我還是Linux新手,我在想:什麼是Linux目錄//? 我可以使用CD更改目錄(CD)的根目錄/ ~> cd/
/>
使用PWD(工作目錄的打印姓名)告訴我,我的根(/) /> pwd
/
使用ls命令(列出目錄內容)我看到下面的(使用Raspbian傑西) /> ls
bin boot dev etc home include lib lost+found media mnt opt
我試圖在Python中使用Unix find命令,無法獲得輸入pwd,`pwd`也無法正常工作。 import commands
import os
f = raw_input('Enter name of the file: ')
fh = open(f, 'r')
prevdir = os.getcwd()
files = fh.readlines()
for line in