Linux常用命令操作

grep和find区别

  1. find用来搜索文件,grep用来搜索文字
  2. find是完全匹配,grep是包含匹配

grep命令

  1. grep error test.log # 查找test.log文件中包含error的行

find命令

  1. -name 按文件名查找文件(区分大小写)
  2. -iname 同上(不区分大小写)

关闭tomcat进程

ps -e | grep tomcat
kill

vim常用命令

  1. dd删除一行
  2. x 删除光标后文字

你可能感兴趣的:(vim,后端,linux,ubuntu)