I change too frequently the location of some files generated daily. The thing is that I want to change their names by only adding the new required characters.
What I want is something like this:
$ mv file.csv /home/user/{something}_backup1
So I could see:
$ ls /home/user
file.csv_backup1
What I'm doing now is the simple:
$ mv file.csv /home/user/file.csv_backup1
You could say "don't be lazy and do it that way", the thing is that the real file names have around 25 characters and retyping them is really annoying.
The past given is only an example, it could be a different directory or different new text.
By the way I'm using bash shell