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