2011.06.02 收集linux命令:
一、檔案管理:
1.cat:從乙個文件檔案1 輸入到乙個文件2中
cat -n a.txt > b.txt
2.chgrp(change group) 改變乙個檔案的群組
chgrp guohui b.txt
3.chmod (change model) 改變乙個檔案的模式 rwx(4-2-1)
chmod a.txt 777
4.chown (change owner) 改變乙個檔案的使用者
chown guohui a.txt
5.cmp (compare) 比較兩個檔案的不同
cmp a.txt b.txt
6.diff(different) 比較兩個檔案差異
diff a.txt b.txt
7.file 檢視檔案的型別
file b.txt
8.find 查詢檔案
find b.txt
9.ln 關聯兩個檔案(類似win 下的快捷方式)
ln kk b.txt
10.less 檢視檔案內容
less b.txt
11.lsattr 檢視檔案屬性 (同file?)
lsattr b.txt
11.rmdir 刪除空資料夾
rmdir test
12.more 檢視檔案內容
more c.txt
13.mv 移動檔案或者目錄
more 源 目的
14.rm 刪除檔案
rm a.txt 或者 rm -i file 或者 rm -r file 或者 rm -f file
15.touch 建立乙個文件
touch cc.txt
16.which 在環境變數中尋找檔案
which b.txt
17.cp 拷貝
cp 源 目的
Linux常用命令收集
1.linux系統用命令刪除資料夾?rm rf dir note dir 資料夾路徑 2.linux 返回根目錄命令?cd 3.複製資料夾命令 cp r usr xu usr liu note usr xu 檔案或資料夾的路徑 usr liu 複製路徑 參考 linux複製檔案 資料夾命令 其它 1...
linux常用命令收集
1.啟動命令相關 shutdown h now 立刻關機 shutdown r now 立刻重啟 2.vim命令 進入編輯模式 a 在游標所在字元後插入 a 在游標所在行尾插入 i 在游標所在字元前插入 i 在游標所在行行首插入 o 在游標下插入新行 o 在游標上插入新行 行號相關 set nu 設...
Git常用命令收集
git clone將所有檔案新增到版本控制中 git add 本地執行提交操作 git commit m 提交說明 同步到遠端版本庫,也就是github git push origin master在github上刪除某個目錄或檔案,但是保留本地的,以刪除.idea資料夾為例 git rm r ca...