常用的Linux命令
在开发过程中,一些常用的Linux命令:
常用的Linux命令
1、vim test.html 创建新的文件
vim + 文件名.后缀
2、ls 查看当前文件夹下的文件
ls -a 列出所有文件,包括隐藏文件
ls -1 每行列出一个文件,以单列形式列出
3、cat test.html 将该文件内容打印显示出来
cat test1.html
cat test2.html
cat test1.html test2.html>test3.html
cat test3.html 将多个文件合并到目标文件中。
cat test1.html
cat test2.html
cat test1.html test2.html>>test4.html 将几个文件附加到目录文件中
4、mv 移动或重命名文件和目录
mv file1.txt file2.txt 将file1文件命名为file2
用法:
cat 1.txt
mv 1.txt 2.txt
mv file1.txt file2 将file1文本移动到file2目录
5、touch file 命令用于修改文件或者目录的时间属性,包括存取时间和更改时间。若文件不存在,系统会建立一个新的空白文件。
touch newfile
6、mkdir file 创建文件夹
7、cd ../ 返回当前文件夹的上一层
cd / 返回到根目录下
8、rm -rf folder 删除文件夹