An open API service indexing awesome lists of open source software.

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

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