mirror of
https://github.com/Mibew/i18n.git
synced 2025-01-23 22:00:29 +03:00
12 lines
131 B
Plaintext
12 lines
131 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
files=$1
|
||
|
|
||
|
if [ -e $files ]
|
||
|
then
|
||
|
cat /dev/null > $2
|
||
|
for file in $files
|
||
|
do
|
||
|
cat $file >> $2
|
||
|
done
|
||
|
fi
|