Linux Bash: Move multiple different files into same directory
问题 As a rather novice Linux user, I can't seem to find how to do this. I am trying to move unique files all in one directory into 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 vehicle. Right now I do this by moving the files individually: $ mv car.txt vehicle $ mv bicycle.txt vehicle ... How can I do this in one line? 回答1: You can do mv car.txt bicycle.txt vehicle/ (Note that