雲端計算面試題:檔案定位路徑

千鋒雲端計算發表於2019-07-10

路徑的作用:定位檔案

你要在哪兒建立檔案?

你要將什麼檔案複製到什麼地方?

你要刪除什麼地方的什麼檔案?


雲端計算面試題:檔案定位路徑


/home/alice/file1 和 /home/bob/file1 不是同一檔案!

/abc/file5 和 abc/file5 有可能是不一樣的!

絕對路徑: 從/開始的路徑 /home/alice/file1

相對路徑: 相對於當前目錄開始 a.txt   ./a.txt ../bob/a.txt  [假如:此時在目錄/home/alice]

絕對路徑示例:

# useradd alice

# touch /home/alice/file1

# touch ~/file2

# touch ~alice/file3

相對路徑示例:

# pwd

/root

# mkdir abc

# touch ../file3

# touch file4

# touch abc/file5

cd 改變

目錄

cd 絕對路徑 cd /home/alice cd ~alice

cd 相對路徑 cd Desktop/abc cd .. cd .

cd 專用:

cd - 返回上次目錄

cd 直接回家


雲端計算面試題:檔案定位路徑


==================================================================


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69916964/viewspace-2650035/,如需轉載,請註明出處,否則將追究法律責任。

相關文章