工作積累 3,unix下的一些常用命令

2021-04-15 06:26:59 字數 440 閱讀 5298

unix下的一些常用命令:

建資料夾:mkdir mytest

刪資料夾  rmdir mytest

建檔案    touch myfile

刪檔案     rm -df myfile

複製檔案 cp

移動檔案  mv

許可權相關   -rw-rw-rw-  一共10位第一位-表示檔案,d表示資料夾 2-4位表示所有者許可權,5-7表示組成員許可權,8-10表示每個人許可權。r=4,w=2,x=1 所以

chmod 777 mytest :為給mytest授予所有人所有許可權

chomd 770 mytest :給所有者和組成員授予所有許可權

chmod 640 mytest :給所有者讀寫,組成員讀的許可權

另一種形式 chmod g+w mytest:給組成員寫的許可權(o代表所有者,g代表組成員,a代表每個人) 

關於unix下使用tar的一些常用技巧

tar是linux unix下經常要用,包括備份,打包,傳輸等,是使用頻率較高的命令,下面這些技巧,可以大大提高維護人員的效率,現貼出以備查 1,解壓包中檔案至指定資料夾 tar xzvf file.tgz c root file c 引數是將檔案解到指定的目錄.這一例就是將壓縮包檔案file.tg...

c 的一些積累

combobox 控制項 this.combobox1.tabindex 1 this.combobox1.items.add com0 combobox1.selecteditem.tostring int index combobox1.selectedindex string 字串操作 字串 ...

Linux上的一些積累

1 linux中建立檔案用touch 例如 touch 1.txt 刪除檔案用rm 例如 rm f 1.txt 建立目錄用mkdir 例如 mkdir daiyuanqi 刪除空目錄用rmdir 例如 rmdir daiyuanqi 有東西的目錄不能刪 刪除裝有東西的目錄就用rm rf 例如rm r...