Skip to content

Instantly share code, notes, and snippets.

@seeni-dev
Created September 28, 2018 07:55
Show Gist options
  • Save seeni-dev/cc9fc2176e6ea790542cf4106e9bb8cc to your computer and use it in GitHub Desktop.
Save seeni-dev/cc9fc2176e6ea790542cf4106e9bb8cc to your computer and use it in GitHub Desktop.
shell script for generating ALL.txt
echo "">ALL.txt
while read line
do
echo "//file name " $line >> ALL.txt
cat $line >> ALL.txt
done < genFile.g
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment