标签:
让我们用这些Unix/Linux命令技巧开启新的一年,提高在终端下的生产力。我已经找了很久了,现在就与你们分享。
> /path/to/file.log # 或使用如下格式 : > /path/to/file.log # 然后删除它 rm /path/to/file.log
如何记录终端输出?
script my.terminal.sessio
输入命令:
ls date sudo service foo stop
more my.terminal.session less my.terminal.session cat my.terminal.session
还原被删除的 /tmp 文件夹
mkdir /tmp chmod 1777 /tmp chown root:root /tmp ls -ld /tmp
锁定一个文件夹
chmod 0000 /downloads
root用户仍旧可以访问,而ls和cd命令则不工作。要还原它用:
chmod 0755 /downloads
vim +X filename
reset
易读格式
ls -lh # 以易读的格式 (比如: 1K 234M 2G) df -h df -k # 以字节、KB、MB 或 GB 输出: free -b free -k free -m free -g # 以易读的格式输出 (比如 1K 234M 2G) du -h # 以易读的格式显示文件系统权限 stat -c %A /boot # 比较易读的数字 sort -h -a file # 在Linux上以易读的形式显示cpu信息 lscpu lscpu -e lscpu -e=cpu,node # 以易读的形式显示每个文件的大小 tree -h tree -h /boot
标签:
原文地址:http://www.cnblogs.com/dan-alone/p/4562067.html