進入目錄、列出目錄列表、讀取檔案內容、寫入檔案(資料)、變更檔案名稱、刪除檔案、目錄內新增檔案、變更目錄名稱、刪除目錄
練習題目1/7
1.root登入 root登入:
cd /tmp (進入tmp目錄下)
mkdir testdir1 (建立目錄)
ls -ld testdir1/ (檢查建立目錄)
2. cd testdir1/ (進入目錄)
touch testfile1 (建立檔案)
ls -l (目錄列表)
1.user登入 user登入 :
cd /tmp (進入tmp目錄下 )
cd testdir1/ (進入目錄)
ls -l (列出目錄列表)
2. cat testfile1 (讀取檔案)
echo “hello” (寫一個hello輸出到螢幕)
echo “hello” > testfile1 (輸出轉向到testdfile1)
3. mv testfile1 testfile1.mv (變更檔案名稱)
rm -f testfile1 (刪除檔案)
4. touch user.file (建立user.file檔案)
5. 變更檔案名稱 (要看上一層/tmp) cd .. (上一層)
mv testdir1 testdir1.mv (變更檔案名稱)
6. 刪除目錄(要看上一層 /tmp) rm -fr testdir/ (刪除目錄)