You've already forked linux-packaging-mono
acceptance-tests
data
debian
docs
external
Newtonsoft.Json
api-doc-tools
api-snapshot
aspnetwebstack
bdwgc
binary-reference-assemblies
bockbuild
boringssl
cecil
cecil-legacy
corefx
corert
helix-binaries
ikdasm
ikvm
illinker-test-assets
linker
llvm-project
clang
clang-tools-extra
compiler-rt
libcxx
benchmarks
cmake
docs
fuzzing
include
lib
src
utils
google-benchmark
libcxx
symcheck-blacklists
cat_files.py
gen_link_script.py
merge_archives.py
not.py
sym_diff.py
sym_extract.py
sym_match.py
www
.arcconfig
.clang-format
.gitignore
CMakeLists.txt
CREDITS.TXT
LICENSE.TXT
NOTES.TXT
TODO.TXT
appveyor-reqs-install.cmd
appveyor.yml
libcxxabi
libunwind
lld
lldb
llvm
openmp
polly
nuget-buildtasks
nunit-lite
roslyn-binaries
rx
xunit-binaries
how-to-bump-roslyn-binaries.md
ikvm-native
llvm
m4
man
mcs
mk
mono
msvc
netcore
po
runtime
samples
scripts
support
tools
COPYING.LIB
LICENSE
Makefile.am
Makefile.in
NEWS
README.md
acinclude.m4
aclocal.m4
autogen.sh
code_of_conduct.md
compile
config.guess
config.h.in
config.rpath
config.sub
configure.REMOVED.git-id
configure.ac.REMOVED.git-id
depcomp
install-sh
ltmain.sh.REMOVED.git-id
missing
mkinstalldirs
mono-uninstalled.pc.in
test-driver
winconfig.h
47 lines
1.3 KiB
Python
47 lines
1.3 KiB
Python
![]() |
#!/usr/bin/env python
|
||
|
#===----------------------------------------------------------------------===##
|
||
|
#
|
||
|
# The LLVM Compiler Infrastructure
|
||
|
#
|
||
|
# This file is dual licensed under the MIT and the University of Illinois Open
|
||
|
# Source Licenses. See LICENSE.TXT for details.
|
||
|
#
|
||
|
#===----------------------------------------------------------------------===##
|
||
|
|
||
|
from argparse import ArgumentParser
|
||
|
import sys
|
||
|
|
||
|
def print_and_exit(msg):
|
||
|
sys.stderr.write(msg + '\n')
|
||
|
sys.exit(1)
|
||
|
|
||
|
def main():
|
||
|
parser = ArgumentParser(
|
||
|
description="Concatenate two files into a single file")
|
||
|
parser.add_argument(
|
||
|
'-o', '--output', dest='output', required=True,
|
||
|
help='The output file. stdout is used if not given',
|
||
|
type=str, action='store')
|
||
|
parser.add_argument(
|
||
|
'files', metavar='files', nargs='+',
|
||
|
help='The files to concatenate')
|
||
|
|
||
|
args = parser.parse_args()
|
||
|
|
||
|
if len(args.files) < 2:
|
||
|
print_and_exit('fewer than 2 inputs provided')
|
||
|
data = ''
|
||
|
for filename in args.files:
|
||
|
with open(filename, 'r') as f:
|
||
|
data += f.read()
|
||
|
if len(data) != 0 and data[-1] != '\n':
|
||
|
data += '\n'
|
||
|
assert len(data) > 0 and "cannot cat empty files"
|
||
|
with open(args.output, 'w') as f:
|
||
|
f.write(data)
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|
||
|
sys.exit(0)
|