附录练习 11 移动文件 (mv)

在这个练习中,你将会学习如何使用 mv 命令把一个文件从一个地方移动到另一个地方。

55.12.1 跟我做

Linux/macOS

练习 11 会话

  1. $ cd temp
  2. $ mv awesome.txt uncool.txt
  3. $ ls
  4. newplace uncool.txt
  5. $ mv newplace oldplace
  6. $ ls
  7. oldplace uncool.txt
  8. $ mv oldplace newplace
  9. $ ls
  10. newplace uncool.txt
  11. $

Windows

练习 11 Windows 会话

  1. > cd temp
  2. > mv awesome.txt uncool.txt
  3. > ls
  4. Directory: C:\Users\zed\temp
  5. Mode LastWriteTime Length Name
  6. ---- ------------- ------ ----
  7. d---- 12/22/2011 4:52 PM newplace
  8. d---- 12/22/2011 4:52 PM something
  9. -a--- 12/22/2011 4:49 PM 0 iamcool.txt
  10. -a--- 12/22/2011 4:49 PM 0 neat.txt
  11. -a--- 12/22/2011 4:49 PM 0 thefourthfile.txt
  12. -a--- 12/22/2011 4:49 PM 0 uncool.txt
  13. > mv newplace oldplace
  14. > ls
  15. Directory: C:\Users\zed\temp
  16. Mode LastWriteTime Length Name
  17. ---- ------------- ------ ----
  18. d---- 12/22/2011 4:52 PM oldplace
  19. d---- 12/22/2011 4:52 PM something
  20. -a--- 12/22/2011 4:49 PM 0 iamcool.txt
  21. -a--- 12/22/2011 4:49 PM 0 neat.txt
  22. -a--- 12/22/2011 4:49 PM 0 thefourthfile.txt
  23. -a--- 12/22/2011 4:49 PM 0 uncool.txt
  24. > mv oldplace newplace
  25. > ls newplace
  26. Directory: C:\Users\zed\temp\newplace
  27. Mode LastWriteTime Length Name
  28. ---- ------------- ------ ----
  29. -a--- 12/22/2011 4:49 PM 0 awesome.txt
  30. > ls
  31. Directory: C:\Users\zed\temp
  32. Mode LastWriteTime Length Name
  33. ---- ------------- ------ ----
  34. d---- 12/22/2011 4:52 PM newplace
  35. d---- 12/22/2011 4:52 PM something
  36. -a--- 12/22/2011 4:49 PM 0 iamcool.txt
  37. -a--- 12/22/2011 4:49 PM 0 neat.txt
  38. -a--- 12/22/2011 4:49 PM 0 thefourthfile.txt
  39. -a--- 12/22/2011 4:49 PM 0 uncool.txt
  40. >

55.12.2 你学到的

移动文件,或者重命名,很简单:给出原来的名字和新的名字即可。

55.12.3 附加练习

  • 将 newplace 目录下的一个文件移动到另一个目录下,然后再移动回来。