As a pretty newbie Linux user, I cannot find how to do this. I am trying to move unique files in one directory to another directory. Example:
$ ls vehicle car.txt bicycle.txt airplane.html train.docx (more files)
I want car.txt, bicycle.txt, airplane.html and train.docx inside the car.
Now I am doing this by moving the files individually:
$ mv car.txt vehicle $ mv bicycle.txt vehicle ...
How to do it in one line?
source share