美文网首页
linux 简单命令

linux 简单命令

作者: DH东海 | 来源:发表于2018-10-26 13:52 被阅读0次

find : 查找

find /opt/templateforstoremanage -name plTemplate.xls

locate 查找旧文件目录 一天更新一次

locate plTemplate.xls

查看catalina.out最后1000行

tail -n 1000 catalina.out

jobs 显示当前暂停的进程
bg %N 使第N个任务在后台运行(%前有空格)
fg %N 使第N个任务在前台运行

查看端口占用

ss -lntpd | grep :8080

查看进程

ps -ef | grep tomcat

相关文章

网友评论

      本文标题:linux 简单命令

      本文链接:https://www.haomeiwen.com/subject/uhiktqtx.html