命令
作用命令
作用cat
檢視檔案內容
more/less
檢視檔案內容
cd切換工作目錄
touch
改變檔案的時間屬性
chown
改變檔案屬權
mv改名或移動檔案
chmod
改變檔案許可權
pwd顯示當前所在的目錄
clear
清除螢幕
rm刪除檔案或目錄
cp拷貝檔案
find
查詢檔案
ln建立檔案鏈結
which
尋找命令
ls顯示目錄內容
tar檔案打包
mkdir/rmdir
建立/刪除目錄
[g]zip/unzip/7za
檔案壓縮和解壓
1.linux的目錄結構
linux 檔案系統採用樹形結構的檔案目錄將系統中所有檔案分級、 分層組織在一起。
起點為根目錄「/」 ,所有其他的目錄都由根目錄派生而來。
特殊目錄
「.」代表該目錄自己
「…」代表該目錄的父目錄
注:對於根目錄,「.」和 「…」都代表其自己
2.linux的目錄操作
ls命令
選項說明
-a列出目錄下的所有檔案,包括以.開頭的隱含檔案
-i列出檔案的詳細資訊,通常稱為「長格式」
-d輸出引數是目錄時,只顯示該目錄本身
-a顯示除『.』和『…』外的所有檔案
-r遞迴地列出所有子目錄下的所有檔案
-h以人類易讀的單位顯示檔案大小
-s以檔案大小排序輸出
-t以時間排序輸出
示例:
#ls -a 列表顯示當前目錄下的檔案和目錄(包括隱含檔案和目錄)
[ser@localhost desktop]$ ls -a
. .. dir001 dir002 dir003 dir004
#ls -l 以長格式列表顯示結果
[ser@localhost desktop]$ ls -l
total 16
drwxrwxr-x. 2 ser ser 4096 nov 14 19:05 dir001
drwxrwxr-x. 2 ser ser 4096 nov 8 17:07 dir002
drwxrwxr-x. 2 ser ser 4096 nov 8 17:07 dir003
drwxrwxr-x. 2 ser ser 4096 nov 8 17:07 dir004
#ls -r 遞迴地顯示當前目錄及其子目錄下的檔案和目錄
[ser@localhost desktop]$ ls -r
.:dir001 dir002 dir003 dir004
./dir001:
1.txt 1.txt~
./dir002:
./dir003:
./dir004:
cd 切換目錄
[ser@localhost ~]$ cd /etc/hal
[ser@localhost hal]$
[ser@localhost hal]$ cd ..
[ser@localhost etc]$ cd ..
[ser@localhost /]$
mkdir
-p, --parents 可以是乙個路徑名稱。此時若路徑中的某些目錄尚不存在,加上此選項後,系統將自動建立好那些尚不存在的目錄,即一次可以建立多個目錄;
-v, --verbose 每次建立新目錄都顯示資訊
[ser@localhost /]$ mkdir /home/ser/desktop/lhw01
[ser@localhost /]$ cd /home/ser/desktop/
[ser@localhost desktop]$ ls
dir001 dir002 dir003 dir004 lhw01
[ser@localhost ~]$ mkdir desktop/lhw02/qq
mkdir: cannot create directory `desktop/lhw02/qq': no such file or directory
[ser@localhost ~]$ mkdir -p desktop/lhw02/qq
[ser@localhost ~]$ cd desktop/
[ser@localhost desktop]$ ls
dir001 dir002 dir003 dir004 lhw01 lhw02
[ser@localhost desktop]$ ls lhw02
qq
rmdir
[ser@localhost desktop]$ rmdir lhw02/qq
[ser@localhost desktop]$ cd lhw02
[ser@localhost lhw02]$ ls
[ser@localhost lhw02]$
pwd
[ser@localhost desktop]$ pwd
/home/ser/desktop
linux基本命令
linux常用命令 基礎 eg man ls 就可以檢視ls相關的用法 注 按q鍵或者ctrl c退出,在linux下可以使用ctrl c終止當前程式執行。2.ls 檢視目錄或者檔案的屬 列舉出任一目錄下面的檔案 eg ls usr man ls l a.d表示目錄 directory 如果是乙個 ...
《linux基本命令》
博主部落格 斷橋殘雪 uname 顯示版本資訊 同win2k的 ver dir 顯示當前目錄檔案,ls al 顯示包括隱藏檔案 同win2k的 dir pwd 查詢當前所在的目錄位置 cd cd 回到上一層目錄,注意cd 與.之間有空格。cd 返回到根目錄。cat 檔名 檢視檔案內容 cat abc...
LINUX 基本命令
檔案和目錄操作的基本命令 cat clear cmp cut diff du emacs fgrep file grep head ln less more pico pwd sort stat strings tail touch umask uniq vi wc whatis ls ls 選項 ...