Quote:
|
Originally Posted by vibhor_agarwali
List contains name of files:
eg.
A.txt
The hell.txt
etc.
I want to perform some operations on all.
Now how do i go about with "The Hell.txt"
|
Code:
while read file
do
echo "$file"
done < list.txt
Since some of the filename contain spaces use quotes to do your operation.