$ cut -f 1 -d ' ' ehbio.fa | tail -n 4>myc
acggagcgagctagtgcagcgaggagctgagtcgagc
caggacaggagcta
end# 直接跳到上面執行的cut命令,再執行一次
$ !cut
cut -f 1 -d ' ' ehbio.fa | tail -n 4
>myc
acggagcgagctagtgcagcgaggagctgagtcgagc
caggacaggagcta
end
# 寫完下面的命令,突然不想執行了,又不想乙個個刪掉$ cut -f 1 -d ' ' ehbio.fa | tail -n 4
# 按ctrl+a, 回到行首,再輸入`#`號,回車,命令即被注釋掉。
$ #cut -f 1 -d ' ' ehbio.fa | tail -n 4
$ lsehbio3.fa ehbio4.fa ehbio5.fa ehbio6.fa ehbio.fa second.fa
$ !!
lsehbio3.fa ehbio4.fa ehbio5.fa ehbio6.fa ehbio.fa second.fa
# 輸入乙個命令$ #cut -f 1 -d ' ' ehbio.fa | tail -n 4
# !!表示上一條命令
# :gs表示替換,把上乙個命令中全部的ehbio替換為ehbio3; g: global; s: substitute
$ !!:gs/ehbio/ehbio3
#cut -f 1 -d ' ' ehbio3.fa | tail -n 4
# 替換後效果如上
# 去掉命令前的#號
$ cut -f 1 -d ' ' ehbio3.fa | tail -n 4
>myc
acggagcgagctagtgcagcgaggagctgagtcgagc
caggacaggagcta
end# 替換ehbio3為ehbio4,直接執行命令
$ !!:gs/ehbio3/ehbio4
cut -f 1 -d ' ' ehbio4.fa | tail -n 4
>myc
acggagcgagctagtgcagcgaggagctgagtcgagc
caggacaggagcta
end
操作linux終端的常用快捷鍵
tab 自動補全單詞 ctrl a 游標移動到本行命令的開始 ctrl e 游標移動到本行命令的末尾 ctrl k 刪除游標至命令末尾的內容 ctrl u 刪除游標至命令開始的內容 ctrl shift c 複製選中內容 ctrl shift v 貼上 終端視窗的操作 f11 全屏與退出全屏 ctr...
linux終端常用快捷鍵
參考 常用的快捷鍵 ctrl d 刪除乙個字元,相當於通常的delete鍵 命令列若無所有字元,則相當於exit 處理多行標準輸入時也表示eof ctrl h 退格刪除乙個字元,相當於通常的backspace鍵 ctrl u 刪除游標之前到行首的字元 ctrl k 刪除游標之前到行尾的字元 ctrl...
Linux終端常用快捷鍵
快捷鍵 功能一 歷史命令相關快捷鍵 顯示歷史命令 執行上乙個命令 n執行歷史命令中第 n 條命令 n執行歷史命令中倒數第 n 條命令 二 移動相關快捷鍵 ctrl a 游標移動到行首 ctrl e 游標移動到最末尾 ctrl 向右移動乙個word ctrl 向左移動乙個word esc f 移動到當...