第一章,Linux常用命令
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第一章,Linux常用命令相关的知识,希望对你有一定的参考价值。
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 查看
以上是关于第一章,Linux常用命令的主要内容,如果未能解决你的问题,请参考以下文章