幾個shell命令

2022-02-12 02:31:13 字數 845 閱讀 3950

1、

!$ 可以改成:

$mkdir mydir

$mv !$ yourdir

#$mv mydir yourdir

$cd !$

2、^old^new

替換前一條命令裡的部分字串。

場景:echo "wanderful"

,其實是想輸出

echo "wonderful"

。只需要

^a^o

就行了,對很長的命令的錯誤拼寫有很大的幫助。(陳皓注:也可以使用

!!:gs/old/new

) 3

、列出當前目錄下最大的幾個檔案

du -s * | sort -n | tail -n 3

4、date -d@1234567890

時間截轉時間

5、man ascii

顯示 ascii

碼表。 6

、監聽埠

netstat -anop | grep ssh

netstat –

tlnp //

監聽的埠

7、ssh user@server bash < /path/to/local/script.sh

在遠端機器上執行一段指令碼。這條命令最大的好處就是不用把指令碼拷到遠端機器上。

ssh user@host cat /path/to/remotefile diff /path/to/localfile -

比較乙個遠端檔案和乙個本地檔案

8、vim scp://username@host//path/to/somefile

vim

乙個遠端檔案

原文:

shell指令碼常用的幾個命令

1 grep grep命令 檔案過濾分割與合併 grep global search regular expression re and print out the line,全面搜尋正規表示式並把行列印出來 是一種強大的文字搜尋工具,它能使用正規表示式搜尋文字,並把匹配的行列印出來。選項 grep...

SHELL 指令碼基本的幾個命令

配置檔案時,經常用到的命令 echo path 列印輸出變數,輸出變數內容新增 符號 export lcs i am lcs 自定義環境變數,臨時生效 生效放在檔案裡面,優先順序如下 etc profile bash profile bashrc etc profile 推薦使用最高端的檔案 etc...

python中執行shell命令的幾個方法

這篇文章主要介紹了python中執行shell命令的幾個方法,本文一共給出3種方法實現執行shell命令,需要的朋友可以參考下 最近有個需求就是頁面上執行shell命令,第一想到的就是os.system,如下 os.system cat proc cpuinfo 但是發現頁面上列印的命令執行結果 0...