1.3 mkdir
作用:創(chuàng)建文件夾
用法: mkdir 文件夾名稱(可以是相對或者絕對路徑)
mkdir a1 在當前文件夾中創(chuàng)建a1文件夾
mkdir -p a1/b1 創(chuàng)建b1文件夾,如果父文件夾不存在可以一并創(chuàng)建
1.4 touch (了解)
作用:創(chuàng)建空白文件
touch 1.txt 創(chuàng)建一個空白的1.txt文件
1.5 echo
作用:打印
echo hello 向控制臺打印hello字符串
1.6 > >>
作用:指定輸出的文件
echo hello > 1.txt 向1.txt文件中輸出hello
區(qū)別 > 是覆蓋原有文件的內(nèi)容 >> 在原有文件中追加新的內(nèi)容
1.7 cat
作用:查看文件內(nèi)容
cat 1.txt 在控制臺打印1.txt文件中的內(nèi)容
1.8 cp
作用:復(fù)制
在tmp目錄下創(chuàng)建一個文件1.txt
[root@localhost tmp] cp 1.txt /1.txt 將當前目錄下的1.txt 復(fù)制到根目錄下
1.9 mv
作用:移動和重命名
root@localhost:~/mpich2-1.0.2p1#./configure--prefix=/usr/mpich2-1.0.2#/usr/mpich2-1.0.2為安裝目錄root@localhost:~/mpich2-1.0.2p1#makeroot@localhost:~/mpich2-1.0.2p1#makeinstall。[root@localhost ~]# cat /tmp/output.txt。[root@localhost ~]# ls -lh /tmp/output.txt。
[root@localhost ~]# cat /tmp/output.txt。root@localhost:~/mpich2-1.0.2p1#./configure--prefix=/usr/mpich2-1.0.2#/usr/mpich2-1.0.2為安裝目錄root@localhost:~/mpich2-1.0.2p1#makeroot@localhost:~/mpich2-1.0.2p1#makeinstall。[root@localhost ~]# ls -lh /tmp/output.txt。
2.0 rm
作用:刪除
有詢問的刪除!!
rm 文件名
rm -r 文件夾-r 是遞歸
不帶詢問的刪除 -f
rm -f 文件名 直接刪除文件linux常用命令,不詢問
rm -rf 文件夾 直接刪除文件夾linux常用命令,不詢問
2.2 pwd
作用:打印當前所在的目錄路徑
可以獲取當前路徑進行復(fù)制使用
2.3 cat、more、less、head、tail
作用:查看文件的內(nèi)容
cat特點:展示文件中所有內(nèi)容
more和less 特點:分頁展示文件中內(nèi)容