Hi!,
I'm kinda new to shell scripting, Here's a problem that I have faced and dunno how to solve:
First,
I want my script to rename the files stored in a .txt file line by line(there's no pattern that I can use with mv, so I want mv to deal with a file generated by ls /home/whatever/ > whatever_files.txt). So, Let's that that now mv is dealing with the first line in whatever_files.txt which has a file name /home/whatever/whatever545.jpg, I want the new file to be called file_whatever.jpg. But in order to do that, I figured out that I must store the name of the file in a variable and having a mv command which looks like this:
mv whateverhey.jpg file_$filename
but I dunno how to store that name in a variable and how to make mv deal with files listed in a text file.
Thanks!