對於筆記(一)的一些解答
cp和rm命令分別是複製和刪除命令,但是只針對file. 如果想要刪除direction就必須用到命令下面的option
在cp和rm這兩個命令中,通過查詢幫助(man cp或man rm)可以發現針對direction的操作的option是 「-r」。
所以解決方法是改為 :
cp -r cat1 directionwhereyouwant
rm -r dog door
今天繼續學習一些linux下的一些主要的命令:
command
meaning
lslist files and directories
ls -a
list all files and directories
mkdir
make a directory
cd directory
change to named directory
cdchange to home-directory
cd ~
change to home-directory
cd ..
change to parent directory
pwddisplay the path of the current directory
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
command
meaning
command > file
redirect standard output to a file
command >> file
command
< file
redirect standard input from a file
command1 | command2
pipe the output of command1 to the input of command2
cat file1 file2 > file0
concatenate file1 and file2 to file0
sort
sort data
wholist users currently logged in
linux 學習筆記二
info page 目錄 usr share info這個目錄中 info info 正確的關機方法 資料同步寫入硬碟 sync 關機或重新開機前 關機 shutdown 重啟 reboot init halt 檢視網路聯機狀態 netstat a 檢視執行程式 ps aux 忘記root密碼 li...
Linux學習筆記(二)
ubuntu中常用命令 一 建立,刪除目錄及檔案 mkdir 目錄名 建立乙個目錄 rmdir 空目錄名 刪除乙個空目錄 rm 檔名 檔名 刪除乙個檔案或多個檔案 rm rf 非空目錄名 刪除乙個非空目錄下的一切 touch 檔名 建立乙個空檔案 二 強制清空 站 ubuntu8.04以前的版本 s...
Linux學習筆記二
系統程序篇 什麼是守護程序 在linux 或者unix 作業系統中在系統的引導的時候會開啟很多服務,這些服務就叫做守護程序。這些服務程式並不會接受電腦使用者的直接操控。此類程式會被以程序的形式初始化。守護程序程式的名稱通常以字母 d 結尾。service 格式 service 命令 service ...