2016年11月2日 星期三

Linux 基本指令


pwd: (Print Working Directory) - 顯示目前所在目錄

ls: (List information about file(s)) - 顯示檔案名稱與內容
  ls -a    顯示隱藏檔 (以"."開頭的檔案)
  ls -al   -a + -l
  ls -al|more 將檔案內容以一頁一頁顯示
  ls --color  以彩色顯示檔案資料
  ls -d   僅列出目錄
  ls -h    檔案容量以人類較易讀的方式(例如 GB, KB 等等)列出來;
  ls -l     詳細列出檔案系統結構
  ls -r     連同子目錄內容一起列出來
  ls -S    以檔案容量大小排序,而不是用檔名排序
  ls -t     依時間排序,而不是用檔名

cd: (Change Directory) - 變換工作路徑
  cd ..     回到上一層(.. 上一層), (. 目前目錄)
  cd     回到使用者目錄
  cd /usr/bin  到/usr/bin這個目錄(絕對路徑)
  cd .. /usr/bin  到上一層/usr/bin這個目錄(相對路徑)
  cd usr/bin   到usr/bin這個目錄(相對路徑)

cat: (Concatenate files and print on the standard output) - 顯示檔案內容

mkdir: (Create new folder(s)) - 建立新資料夾
rmdir: (Remove folder(s)) - 移除資料夾

rm: (Remove files) - 刪除檔案
  rm -irf    目錄下的東西都一起刪除
mv: (Move or rename files or directories) - 移動檔案或目錄
cp: (Copy one or more files to another location) - 複製檔案或目錄

ln: (Make links between files) - 把某個檔案(資料夾)內容連結到某個檔案(資料夾)
  ln -s 來源檔(資料夾) 目的檔(資料夾)
  此時目的檔(資料夾),可以看到來源檔(資料夾)裡面的內容

chmod: (change mode) - 改變檔案的屬性、 SUID 、等等的特性
chown: (change owner) - 改變檔案所屬人
chgrp: (change group) - 改變檔案所屬群組

參考路徑:
http://www.mediacollege.com/linux/command/linux-command.html
http://linux.vbird.org/linux_basic/redhat6.1/linux_06command.php

沒有留言:

張貼留言