命令行可以大大提高程序员生产力,下面是在 bash 下的一些常用命令。
cd [folderName]
. 跳到当前目录下的 folderName 目录cd ..
. 跳到上一层目录ls
. 显示当前目录下的所有文件(包括目录和文件)ls -l
. 显示当前目录下的所有文件(包括目录和文件)的详细信息,创建时间,创建人等pwd
. 显示当前所在的目录mkdir [forderName]
. 在当前目录下新建一个 FolderName 目录touch [fileName]
. 在当前目录下新建一个命名为 fileName 的文件rm [fileName]
. 永久删除名为 fileName 的文件(谨慎使用)clear
. 清除前面输入的命令,使界面更整洁exit
. 关闭命令行面板cp [filePath/fileName] [anotherPath/newName]
. 复制 filePath 底下的 fileName 文件到 anotherPath 目录下,命名为 newNamemv [fileName] [filePath/newName]
. 移动 fileName 文件到 filePath 目录下,并命名为 newName,newName不存在则按原名称移动explorer .
在图形界面中打开当前文件夹