I have a list of files in a .txt file (say list.txt). I want to delete the files in that list. I haven\'t done scripting before. Could some give the shell script/command I c
On linux, you can try:
printf "%s\n" $(
In my case, my .txt file contained a list of items of the kind *.ext and worked fine.
*.ext