linux 常用命令征集(持续更新)
linux 常用命令收集(持续更新)
记录下工作中常用的linux命令。
记录下工作中常用的linux命令。
- 查询某个进程的运行时间:ps -o %t -p pid
- 复制所有文件:(cd /source/directory && tar cf - . ) | (cd /dest/directory && tar xpvf -)