mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-26 13:37:03 +00:00
18 lines
204 B
Bash
Executable File
18 lines
204 B
Bash
Executable File
#!/bin/sh
|
|
|
|
files=""
|
|
outfile=""
|
|
|
|
while [ $# -ge 1 ]; do
|
|
case $1 in
|
|
-o) shift
|
|
outfile=$1
|
|
;;
|
|
|
|
*) files="$files $1"
|
|
esac
|
|
shift
|
|
done
|
|
|
|
cat $files > $outfile
|