1.vi文本操作
开启编辑:按“i”或者“Insert”键
退出编辑:“Esc”键
退出vim:“:q”
保存vim:“:w”
保存退出vim:“:wq”
不保存退出vim:“:q!”
2.文件复制常用操作cp,mv,rm
#复制目录不询问
cp -rf /test1/file1 /test3/file2
#强制覆盖
mv -f /test1/file1 /test3/file2
#递归删除且不询问
rm -rf /test/file1
3.文件查看
cat tac head tail more less
#查看最后50行
tail -n 50 error.log
网友评论