/dev/tcp/8.8.8.8/53 && echo open 2.讓進(jìn)程轉(zhuǎn)入后臺:Ctrl + z3.將進(jìn)程轉(zhuǎn)到前臺:fg4.產(chǎn)生隨機(jī)的十六進(jìn)制數(shù),其中n是字..."/>
溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

73條日常shell命令匯總,總有一條你需要!

發(fā)布時間:2020-08-15 08:54:26 來源:網(wǎng)絡(luò) 閱讀:1215 作者:馬哥教育 欄目:網(wǎng)絡(luò)安全

1.檢查遠(yuǎn)程端口是否對bash開放:

echo >/dev/tcp/8.8.8.8/53 && echo "open"

2.讓進(jìn)程轉(zhuǎn)入后臺:

Ctrl + z

3.將進(jìn)程轉(zhuǎn)到前臺:

fg

4.產(chǎn)生隨機(jī)的十六進(jìn)制數(shù),其中n是字符數(shù):

openssl rand -hex n

5.在當(dāng)前shell里執(zhí)行一個文件里的命令:

source /home/user/file.name

6.截取前5個字符:

${variable:0:5}

7.SSH debug 模式:

ssh -vvv user@ip_address

8.SSH with pem key:

ssh user@ip_address -i key.pem

9.用wget抓取完整的網(wǎng)站目錄結(jié)構(gòu),存放到本地目錄中:

wget -r --no-parent --reject "index.html*" http://hostname/ -P /home/user/dirs

10.一次創(chuàng)建多個目錄:

mkdir -p /home/user/{test,test1,test2}


11.列出包括子進(jìn)程的進(jìn)程樹:

ps axwef

12.創(chuàng)建 war 文件:

jar -cvf name.war file

13.測試硬盤寫入速度:

dd if=/dev/zero of=/tmp/output.img bs=8k count=256k; rm -rf /tmp/output.img

14.測試硬盤讀取速度:

hdparm -Tt /dev/sda

15.獲取文本的md5 hash:

echo -n "text" | md5sum

16.檢查xml格式:

xmllint --noout file.xml

17.將tar.gz提取到新目錄里:

tar zxvf package.tar.gz -C new_dir

18.使用curl獲取HTTP頭信息:

curl -I http://www.example.com

19.修改文件或目錄的時間戳(YYMMDDhhmm):

touch -t 0712250000 file

20.用wget命令執(zhí)行ftp下載:

wget -m ftp://username:password@hostname


21.生成隨機(jī)密碼(例子里是16個字符長):

LANG=c < /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c${1:-16};echo;

22.快速備份一個文件:

cp some_file_name{,.bkp}

23.訪問Windows共享目錄:

smbclient -U "DOMAIN\user" //dc.domain.com/share/test/dir

24.執(zhí)行歷史記錄里的命令(這里是第100行):

!100

25.解壓:

unzip package_name.zip -d dir_name

26.輸入多行文字(CTRL + d 退出):

cat > test.txt

27.創(chuàng)建空文件或清空一個現(xiàn)有文件:

\> test.txt

28.與Ubuntu NTP server同步時間:

ntpdate ntp.ubuntu.com

29.用netstat顯示所有tcp4監(jiān)聽端口:

netstat -lnt4 | awk &apos;{print $4}&apos; | cut -f2 -d: | grep -o &apos;[0-9]*&apos;

30.qcow2鏡像文件轉(zhuǎn)換:

qemu-img convert -f qcow2 -O raw precise-server-cloudimg-amd64-disk1.img \precise-server-cloudimg-amd64-disk1.raw


31.重復(fù)運行文件,顯示其輸出(缺省是2秒一次):

watch ps -ef

32.所有用戶列表:

getent passwd

33.Mount root in read/write mode:

mount -o remount,rw /

34.掛載一個目錄(這是不能使用鏈接的情況):

mount --bind /source /destination

35.動態(tài)更新DNS server:

nsupdate < <EOFupdate add $HOST 86400 A $IPsendEOF

36.遞歸grep所有目錄:

grep -r "some_text" /path/to/dir

37.列出前10個最大的文件:

lsof / | awk &apos;{ if($7 > 1048576) print $7/1048576 "MB "$9 }&apos; | sort -n -u | tail

38.顯示剩余內(nèi)存(MB):

free -m | grep cache | awk &apos;/[0-9]/{ print $4" MB" }&apos;

39.打開Vim并跳到文件末:

vim + some_file_name

40.Git 克隆指定分支(master):

git clone git@github.com:name/app.git -b master


41.Git 切換到其它分支(develop):

git checkout develop

42.Git 刪除分支(myfeature):

git branch -d myfeature

43.Git 刪除遠(yuǎn)程分支

git push origin :branchName

44.Git 將新分支推送到遠(yuǎn)程服務(wù)器

git push -u origin mynewfeature

45.打印歷史記錄中最后一次cat命令:

!cat:p

46.運行歷史記錄里最后一次cat命令:

!cat

47.找出/home/user下所有空子目錄:

find /home/user -maxdepth 1 -type d -empty

48.獲取test.txt文件中第50-60行內(nèi)容:

< test.txt sed -n &apos;50,60p&apos;

49.運行最后一個命令(如果最后一個命令是mkdir /root/test, 下面將會運行: sudo mkdir /root/test):

sudo !!

50.創(chuàng)建臨時RAM文件系統(tǒng) – ramdisk (先創(chuàng)建/tmpram目錄):

mount -t tmpfs tmpfs /tmpram -o size=512m


51.Grep whole words:

grep -w "name" test.txt

52.在需要提升權(quán)限的情況下往一個文件里追加文本:

echo "some text" | sudo tee -a /path/file

53.列出所有kill signal參數(shù):

kill -l

54.在bash歷史記錄里禁止記錄最后一次會話:

kill -9 $$

55.掃描網(wǎng)絡(luò)尋找開放的端口:

nmap -p 8081 172.20.0.0/16

56.設(shè)置git email:

git config --global user.email "me@example.com"

57.To sync with master if you have unpublished commits:

git pull --rebase origin master

58.將所有文件名中含有”txt”的文件移入/home/user目錄:

find -iname "*txt*" -exec mv -v {} /home/user \;

59.將文件按行并列顯示:

paste test.txt test1.txt

60.shell里的進(jìn)度條:

pv data.log


61.使用netcat將數(shù)據(jù)發(fā)送到Graphite server:

echo "hosts.sampleHost 10 `date +%s`" | nc 192.168.200.2 3000

62.將tabs轉(zhuǎn)換成空格:

expand test.txt > test1.txt

63.Skip bash history:

< space >cmd

64.去之前的工作目錄:

cd -

65.拆分大體積的tar.gz文件(每個100MB),然后合并回去:

split –b 100m /path/to/large/archive /path/to/output/filescat files* > archive

66.使用curl獲取HTTP status code:

curl -sL -w "%{http_code}\\n" www.example.com -o /dev/null

67.設(shè)置root密碼,強化MySQL安全安裝:

/usr/bin/mysql_secure_installation

68.當(dāng)Ctrl + c不好使時:

Ctrl + \

69.獲取文件owner:

stat -c %U file.txt

70.block設(shè)備列表:

lsblk -f


71.找出文件名結(jié)尾有空格的文件:

find . -type f -exec egrep -l " +$" {} \;

72.找出文件名有tab縮進(jìn)符的文件

find . -type f -exec egrep -l $&apos;\t&apos; {} \;

73.用”=”打印出橫線:全選復(fù)制放進(jìn)筆記

printf &apos;%100s\n&apos; | tr &apos; &apos; =



文章來源:馬哥教育 

官方微信:馬哥linux運維 

技術(shù)交流群:485374463


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI