码迷,mamicode.com
首页 > 系统相关 > 详细

linux 常用命令

时间:2014-10-02 04:48:42      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:文件   sp   div   c   r   linux   bs   as   file   

1.如果文件名前加点,那这个文件是隐藏文件,需要ls -al才能看到

2.一次性建立多级目录 mkdir -p 同理rmdir -p

3.创建文件 vi 

cat主要有三大功能:

>意思是创建,>>是追加

1.一次显示整个文件 $ cat filename

2.从键盘输入创建一个文件 $ cat > filename  

3.将几个文件合并为一个文件  $cat file1 file2 > file


把 textfile1 的档案内容加上行号后输入 textfile2 这个档案里
cat -n textfile1 > textfile2

把 textfile1 和 textfile2 的档案内容加上行号(空白行不加)之后将内容附加到 textfile3 里。
cat -b textfile1 textfile2 >> textfile3
 
把test.txt文件扔进垃圾箱,赋空值test.txt
cat /dev/null > /etc/test.txt  

linux 常用命令

标签:文件   sp   div   c   r   linux   bs   as   file   

原文地址:http://www.cnblogs.com/yuyutianxia/p/4003780.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!