sed -n '21592,23591p'  log

perl -pi -e 's/str1/str2/g' log

prstat -s size -n 10

prstat -s cpu -n 10

ls -lR | sort -bn +4 (smallest to largest)

ls -lR | sort -bnr +4 (largest to smallest)

find . -name "*" -exec gzgrep "str" {} \;

find . -type f -mtime +3 -size +20480 -print

du -k . | sort -nr | head -20

df -h

/usr/ucb/ps auxwww

nohup ./program > log 2>&1 &

 

相关文章:

  • 2022-12-23
  • 2019-02-19
  • 2021-11-01
  • 2021-09-16
  • 2021-07-03
  • 2021-11-23
猜你喜欢
  • 2018-06-04
  • 2021-09-01
  • 2021-10-23
  • 2021-09-08
  • 2022-12-23
  • 2022-01-05
  • 2022-12-23
相关资源
相似解决方案