LINUX
iteye_129
这个作者很懒,什么都没留下…
展开
-
Find Exec 用法
find /home -size +512k 查大于512k的文件 find / -size +100000k 查大于100m的文件 find -exec 命令很好用 -exec command ; Execute command; true if 0 status is returned. All following a...2015-04-13 14:08:22 · 205 阅读 · 0 评论 -
批量删除大量文件
当要删除的文件太多时,rm -f *.xxx 会因文件太多而溢出无法执行。 用下面命令不会溢出: find . -name "*.trc" -exec rm -f {} \; find . -name "*.trm" -exec rm -f {} \; ...原创 2015-04-13 14:21:07 · 115 阅读 · 0 评论 -
linux top命令中各cpu占用率含义
linux top命令中各cpu占用率含义 0.3% us 用户空间占用CPU百分比 1.0% sy 内核空间占用CPU百分比 0.0% ni 用户进程空间内改变过优先级的进程占用CPU百分比 98.7% id 空闲CPU百分比 0.0% wa 等待输入输出的CPU时间百分比 0.0% hi 硬中断 0.0% si 软中断 =================...2015-04-16 10:44:03 · 914 阅读 · 0 评论 -
Linux init 等级列表
init 等级列表 # /etc/init.d/rc takes care of runlevel handling # # runlevel 0 is System halt (Do not use this for initdefault!) # runlevel 1 is Single user mode # runlevel 2 is Local mult...2015-04-16 10:46:47 · 238 阅读 · 0 评论