linux 命令入門二

2021-05-24 07:45:01 字數 578 閱讀 6161

command

meaning

cp file1 file2

copy file1 and call it file2

mv file1 file2

move or rename file1 to file2

rm file

remove a file

rmdir directory

remove a directory

cat file

display a file

less file

display a file a page at a time

head file

display the first few lines of a file

tail file

display the last few lines of a file

grep 'keyword' file

search a file for keywords

wc file

count number of lines/words/characters in file

Linux入門(二) 常用命令

linux 系統的 root 使用者具有系統的管理許可權,出於安全考慮,普通使用者不具備這一許可權。不過在ubuntu系統中,並不包含root使用者,而是將管理員許可權賦予某特定使用者,他們可以使用 sudo 應用程式來執行管理任務,預設是系統安裝過程中建立的第乙個使用者具有使用sudo的許可權。欲...

Linux入門(二)Shell基本命令

上圖所示,系統使用者gcc時,只輸入useradd abc是不能建立新的使用者abc的,但是使用sudo useradd abc 卻可以成功新增使用者abc,為新使用者設定密碼也一樣。還有一種方法是sudo s,這個s即為su,這樣將自己暫時提公升為root使用者,與前一種方法不同的是,此時的系統使...

Linux入門命令

2.ls 檢視目錄或者檔案的屬 列舉出任一目錄下面的檔案 eg ls usr man ls l a.d表示目錄 directory 如果是乙個 表示是檔案,如果是l則表示是乙個連線檔案 link b.表示檔案或者目錄許可許可權.分別用可讀 r 可寫 w 可執行 x 3.cp 拷貝檔案 eg cp f...