卡卡笔记之Linux基础命令---
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-04-30
卡卡笔记之Linux基础命令---壹 LS #ls [参数] [目录或文件名] [root@localhost root]# ls –l 长格式输出 [root@localhost root]# ls –a 显示所有文件,包含隐藏文件;包括“.“和“..“ [root@localhost root]# ls –A 显示所有文件,包含隐藏文件,不包括“.“和“..“目录 [root@localhost root]# ls –lh 阅读的方式来显示文件或目录的大小,比如K、M或G等 [root@localhost root]# ls -t 按文件访问(或修改)的时间排序,最新的排在最前面 [root@localhost root]# ls -lR 递归显示目录下的所有文件,也会把子目录的文件一并显示出来 [root@localhost root]#ls -la --color=never 表示输出输出没有彩色 [root@localhost root]#ls -la --color=auto 表示自动 [root@localhost root]#ls -la --color=always 表示输出内容有彩色 [root@localhost root]#ls –lS 在文件的大小排序上 [root@localhost root]#ls –lr 如果是逆序排序时 [root@localhost root]#ls –lt 按访问的时候排序 [root@localhost root]#ls –lX 根据扩展名进行排序 [root@localhost root]#ls /root/k* * 代表0个或多个字符 [root@localhost root]#ls /root/k? ? 代表任何单个字符 空文件创建 [root@localhost root]#echo > test.txt [root@localhost root]#touch > test.txt [root@localhost root]#cat > test.txt 退出Ctrl C 文件重命名 #mv 原文件名或目录名 新文件或目录名 [root@localhost root]# mv old.txt new.txt 文件内容查看 1Cat [root@localhost ~]# cat /etc/profile 注:查看/etc/目录下的profile文件内容 [root@localhost ~]# cat -b /etc/fstab 注:查看/etc/目录下的profile内容,并且对非空白行进行编号,行号从1开始 [root@localhost ~]# cat -n /etc/profile 注:对/etc目录中的profile的所有的行(包括空白行)进行编号输出显示 [root@localhost ~]# cat -E /etc/profile 注:查看/etc/下的profile内容,并且在每行的结尾处附加$符号 cat 加参数-n 和nl工具差不多,文件内容输出的同时,都会在每行前面加上行号 [root@localhost ~]# cat -n /etc/profile [root@localhost ~]# nl /etc/profile cat 可以同时显示多个文件的内容,比如我们可以在一个cat命令上同时显示两个文件的内容; [root@localhost ~]# cat /etc/fstab /etc/profile cat 对于内容极大的文件来说,可以通过管道|传送到more 工具,然后一页一页的查看; [root@localhost ~]# cat /etc/fstab /etc/profile | more cat 有创建文件的功能,创建文件后,要以EOF或STOP结束; [root@localhost ~]# cat > linuxsir.org.txt << EOF 注:创建linuxsir.org.txt文件; > 我来测试 cat 创建文件; 注:这是为linuxsir.org.txt文件输入内容; > 测试; 注:这是为linuxsir.org.txt文件输入内容; > EOF 注:退出编辑状态; [root@localhost ~]# cat >> linuxsir.txt << EOF //向现有文件中追加新内容 cat 把一个或多个已存在的文件内容,追加到一个已存在的文件中 [root@localhost ~]# cat sir01.txt sir02.txt sir03.txt >> sir00.txt cat 把一个或多个已存在的文件内容,移到一个已存在的文件中 [root@localhost ~]# cat sir01.txt sir02.txt sir03.txt > sir04.txt 2More [root@localhost ~]# more -dc /etc/profile 注:显示提示,并从终端或控制台顶部显示 [root@localhost ~]# more 4 /etc/profile 注:从profile的第4行开始显示 [root@localhost ~]# more -4 /etc/profile 注:每屏显示4行 [root@localhost ~]# more /MAIL /etc/profil |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: ubuntu root 密码的问题下一篇: 复习最基础的linux 之 基本网络配置
关于卡卡笔记之Linux基础命令---的所有评论