20161124 Linux常用命令
1、find
find /etc/ -size +50k -ls
find /etc/ -size +50k -ls 2> /dev/null
查看目录下大于50K的文件并用ls列表显示出来,
理解2> /dev/null含义,把没权限的都隐藏起来了
2、pwd ,ls ,ls -a ,ls -al ,,ls -alh,touch ,make,
常用ls -alh
3、标准输入和输出管道
cat > 1127.www.qixoo.qixoo.com/packages1.txt 之后输入内容,按enter,ctrl+d保存退出
cat 1.txt > 2.txt(覆盖)
cat 1.txt >> 2.txt(追加)
4、管道符 |
使用管道技术提取试验中有关 cat 的命令,并保存于名为 cat1 的文件中:
history | grep cat > cat1
cat cat1 查看
相关文章
- 03-30gdb调试常用命令
- 03-30JVM常用命令
- 03-30Glusterfs的常用命令
- 03-30Iwpriv工作流程及常用命令使用
- 03-30Contos7 常用命令(转)
- 03-30读书笔记--第一章 信息收集
- 03-30docker常用命令
- 03-30第一章001-003课程介绍、计算机网络概述、Internet概述
- 03-30git常用命令(config\)
- 03-30Meterpreter的常用命令合集