https://github.com/huangcongqing/linux
Ubuntu,Centos
https://github.com/huangcongqing/linux
linux linux-shell
Last synced: about 1 year ago
JSON representation
Ubuntu,Centos
- Host: GitHub
- URL: https://github.com/huangcongqing/linux
- Owner: HuangCongQing
- License: mit
- Created: 2019-05-19T04:20:37.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-12T08:20:07.000Z (almost 7 years ago)
- Last Synced: 2024-10-13T13:14:33.744Z (over 1 year ago)
- Topics: linux, linux-shell
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# linux
* 个人学习:https://www.yuque.com/huangzhongqing/mnby33/dow7b4
### Shell
* htop
CPU情况,进程展示,kill进程
https://blog.csdn.net/freeking101/article/details/79173903
* watch,tail--监控文件变化
watch -n 4 -d tail -n 20 ./log_autoencoder.txt
`watch -n 4 -d` 间隔4s显示一次,-d高亮显示变化部分
`tail -n 20 ` 显示末尾20 lines
`head -5 ` 显示文件前5 lines
https://blog.csdn.net/achejq/article/details/39549591