mirror of
https://github.com/boostorg/gil.git
synced 2026-02-19 14:32:10 +00:00
13 lines
180 B
Bash
Executable File
13 lines
180 B
Bash
Executable File
#!/bin/sh
|
|
ii=`expr $#`
|
|
for file in $@
|
|
do
|
|
if [ $ii -lt $# ]
|
|
then
|
|
echo Processing $file ...
|
|
cat $1 $file > tmp
|
|
mv tmp $file
|
|
fi
|
|
ii=`expr $ii - 1`
|
|
done
|