Created
September 28, 2018 07:55
-
-
Save seeni-dev/cc9fc2176e6ea790542cf4106e9bb8cc to your computer and use it in GitHub Desktop.
shell script for generating ALL.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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