zuppachu / Joanne-s-Learning-Blog

程式導師實驗計畫第二期 之 Coding 學習紀錄。
2 stars 0 forks source link

[ CMD101 ] - Command Line 入門 #23

Open zuppachu opened 5 years ago

zuppachu commented 5 years ago

基本指令

  1. pwd : Print Working Directory 印出我在哪

  2. ls : LiSt 印出所在資料夾的所有檔案 ls -al:把隱藏的檔案也列出來

  3. cd: Chang Directory 切換資料夾 cd ciao : 去名叫 ciao 的資料夾 cd .. : 跳回前一層資料夾 cd ~/Downloads/test/ciao : ~/資料夾路徑

  4. man : MANual 使用說明書 按 q 離開

  5. clear :清空

操作指令

指令組合技

> :會把原本檔案的內容覆蓋掉

>> :在原檔案內新增內容

| : Pipe 左邊的指令輸出 右邊指令輸入

cat hello | grep o 
// 輸出 hello  檔的內容,將 o 找出來
grep o hello
// 將 hello 檔內的 o 找出來
兩個是一樣的
cat hello | grep o > result 
// 輸出 hello 檔內容,然後將 o 找出來後,再將結果導入到 result 檔案內
(如果沒有 result 檔,會自己新建一個檔)
zuppachu commented 5 years ago

參考資料

Command Line cheat sheet