// cope file
cp file1 file2
// copy folder
cp -r dir1 dir2
//1. cp -r dir1 dir2 --> dir2 不存在的話,會建立 dir2 資料夾
//2. cp -r dir1 mydir --> mydir 已存在,會把 dir copy 到 mydir 資料夾內
//把 file 檔案移動到上一級目錄之中
mv file ..
//把 file 檔案移動到當前目錄的 dir 資料夾之中
mv file dir/
//重新命名檔案
mv file1 file2
//重新命名目錄, 要注意目標目錄是否存在
mv dir1 dir2 # dir2 存在,則為移動操作
rm file
rm -r dir
touch a.txt
//重定向符建立檔案
>a.txt
//最常見的還是用編輯器儲存乙個檔案
mkdir
cat file
file a.txt
touch .aa
mkdir .mydir
這樣建立的檔案通過 ls 命令直接查是查不到的,需要醬紫
ls -a
wget
file index.html
mv index.html index
file index
//依然能識別,linux 對字尾不是特別敏感
檢視內容
cat index
less index
一些操作技巧;
man
命令就是用的less
the linux command line: 第五章
目前主要學習:*
eg:
ab.html a.html a.txt b.txt
//刪掉以 a 打頭的檔案
rm a*
//輸入完不想執行的話
rm a*^c
//檢視萬用字元結果
echo a*
echo*.html
echo a*html
//刪除所有檔案
rm *
the linux command line: 第十九章
unzip test.zip
//重新打包, 指定打包後的檔名和打包目錄
zip -r test2.zip test/
//解壓縮 .tar.gz 檔案
tar zxvf test.tar.gz
//or
tar -zxvf ***.tar.gz
//解壓縮 .tar.bz2 檔案
tar -jxvf ***.tar.bz2
//壓縮, 指定打包後的檔名和打包目錄
tar zcvf test2.tar.gz test/
python學習筆記 操作檔案和目錄
pytho的os os.path模組給我買提供了很多對檔案或者目錄進行操作的方法。import os.path print os.path.abspath 獲取絕對路徑 print os.path.join aaa bbb 合併目錄。因為路徑分隔符是平台相關的 print os.path.split...
python學習筆記 操作檔案和目錄
如果我們要操作檔案 目錄,可以在命令列下面輸入作業系統提供的各種命令來完成。比如dir cp等命令。如果要在python程式中執行這些目錄和檔案的操作怎麼辦?其實作業系統提供的命令只是簡單地呼叫了作業系統提供的介面函式,python內建的os模組也可以直接呼叫作業系統提供的介面函式。開啟python...
Linux操作檔案
語法 mkdir options dirname p 遞迴建立資料夾 mmode 新建資料夾,並設定資料夾的檔案訪問模式為mode 使用 p選項遞迴的建立wenjian test資料夾。linux下新建檔案的方式有非常多,比如 使用vi新建檔案 使用cp命令拷貝乙個檔案 可是最經常使用的還是使用to...