diff options
Diffstat (limited to 'res/bincat.sh')
-rwxr-xr-x | res/bincat.sh | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/res/bincat.sh b/res/bincat.sh deleted file mode 100755 index eb46655b..00000000 --- a/res/bincat.sh +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | #!/bin/bash | ||
2 | # Binary Resource Concatenator | ||
3 | # Copyright: 2021 Jaakko Keränen <jaakko.keranen@iki.fi> | ||
4 | # License: BSD 2-Clause | ||
5 | |||
6 | OUTPUT=-- | ||
7 | SIZES="" | ||
8 | for fn in $*; do | ||
9 | if [ "$OUTPUT" = "--" ]; then | ||
10 | OUTPUT=$fn | ||
11 | rm -f ${OUTPUT} | ||
12 | else | ||
13 | vals=(`/bin/ls -l $fn`) | ||
14 | if [ "$SIZES" = "" ]; then | ||
15 | SIZES=${vals[4]} | ||
16 | else | ||
17 | SIZES=$SIZES\;${vals[4]} | ||
18 | fi | ||
19 | cat ${fn} >> ${OUTPUT} | ||
20 | fi | ||
21 | done | ||
22 | echo $SIZES | ||