Linux學習(實驗樓輸出命令)

2021-07-17 03:58:25 字數 806 閱讀 7207

1、touch 建立

一般是建立文件,但是加檔案型別也可以。

2、mkdir 建立

建立資料夾,(建立多個資料夾:nkdir -p father/son/grandson)

3、cd 進入

cd ~ 進入主介面

cd - 進入上一次瀏覽的介面

pwd 進入最裡面的資料夾

4、cp 複製

直接將檔案複製到資料夾中:cp test father(注意是複製到最裡面的那個資料夾)

複製資料夾:cp -r mydir father (將mydir複製到father的最裡面)

5、rm 刪除

刪除唯讀檔案:rm test

強行刪除檔案: rm -f test

刪除資料夾: rm -r(或者 -r) father

6、mv 移動、重新命名

mv test father

mv test test1

7、nohup xeyes & 眼睛

exit 退出

gesit pm.c(gedit編譯器)

1、shell變數

2、declare 宣告變數

declare tmp

tmp = shiyanlou

3、echo $+變數

檢視變數的值

echo

$tmp

shiyanlou

$的作用是引用乙個變數的值

4、vimdiff 匯出檔案編輯

sudo apt-get install (安裝)

linux命令學習 實驗樓(總結)

ls alh d cd pwd mkdir mvp rm i log mv a.log b.log mv i a.txt test1 cp iu test1 test2 cp s cat ns a.log b.log 帶行號顯示,空行也算 cat還可合併檔案 nl b t a.log nl n ln...

實驗樓 Linux 學習筆記

1.1 linux 歷史的歷史 早期作業系統能夠處理批處理程式,它從檔案或者穿孔卡片讀取資料,然後輸出到另乙個檔案或者印表機,稱為批處理作業系統。後來,出現了能夠支援多個使用者從不同終端同時操作主機的系統,稱為分時作業系統。然後許多人紛紛嘗試開發分時作業系統,unix 就如此誕生,實現了 tcp i...

實驗樓之linux學習

cd etc passwd 第二個分號後即是是否需要密碼登入,去掉即可不需要密碼登入 兩種解決方法 1.實驗樓上的解決方案我試過沒有成功,在此列出來.如果哪位大神看到了請指出我的錯誤 以hhh使用者為例,想要在根目錄上建立乙個資料夾,使用命令 sudo mkdir 1 提示is not in the...