mirror of
https://github.com/Mibew/mibew.git
synced 2025-04-04 15:37:07 +03:00
17 lines
317 B
Bash
Executable File
17 lines
317 B
Bash
Executable File
#!/bin/sh
|
|
|
|
files=$1
|
|
|
|
# Make target file empty
|
|
cat /dev/null > $2
|
|
|
|
# Attach each file from the specified mask to the target file
|
|
for file in $files
|
|
do
|
|
# Process a file only if it exists
|
|
if [ -e $file ]
|
|
then
|
|
# Append content of the current file to the target file
|
|
cat $file >> $2
|
|
fi
|
|
done |