Add text to list of files
Append hello
to each file:
cat filelist.txt | while read line; do echo hello >> $line; done
Append filename to each file:
cat filelist.txt | while read line; do echo $line >> $line; done
Append hello
to each file:
cat filelist.txt | while read line; do echo hello >> $line; done
Append filename to each file:
cat filelist.txt | while read line; do echo $line >> $line; done