1 查看文件内容:
tail -f test.txt
2 查看端口
netstat nlp
3 删除某个运行程序的所有进程
ps -ef|grep translateService.py|grep -v grep|cut -c 9-15|xargs kill -9
4 nohup后台执行程序
nohup python translateService.py

相关文章:

  • 2022-02-07
  • 2021-06-08
  • 2021-06-08
  • 2022-12-23
  • 2021-12-03
  • 2021-08-24
  • 2022-01-17
猜你喜欢
  • 2022-12-23
  • 2021-07-27
  • 2022-12-23
  • 2022-12-23
  • 2021-07-25
  • 2022-01-20
相关资源
相似解决方案