1. 程式人生 > 其它 >linux中sh正在執行指令碼中,想修改指令碼,怎麼辦?

linux中sh正在執行指令碼中,想修改指令碼,怎麼辦?

工作中經常會遇到,在執行一個指令碼時後,覺得有些地方要補充,而這個指令碼又已經運行了一段時間,如果從頭再來很浪費時間,這時如果能修改這個執行中的指令碼就方便多了。

如:

cat test.sh

#!/bin/bash

echo 1111

sleep 60

echo 2222

 

當開始執行後,如果想修改第二個echo的輸出值,怎麼辦?

直接開啟test.sh修改肯定是不行的,這就好比,一個執行中的指令碼,你把檔案刪除了之前,指令碼依然可以執行下去一樣。這是因為,此時的指令碼已經放在了記憶體裡。所以要想修改指令碼只能去記憶體裡修改。linux很方便的可以看到記憶體裡的檔案(/proc目錄下)。

通過:

[root@en tmp]# ps aux |grep test.sh
root     27887  0.0  0.4   4492  1100 pts/0    S    10:20   0:00 sh test.sh

找到程序的pid,然後檢視pid所對應的檔案描述符:

[root@en tmp]# cd /proc/27887/fd
[root@en fd]# ll
total 0
lrwx------ 1 root root 64 May  8 10:21 0 -> /dev/pts/0
lrwx------ 1 root root 64 May  8 10:21 1 -> /dev/pts/0
lrwx------ 1 root root 64 May  8 10:20 2 -> /dev/pts/0
lr-x------ 1 root root 64 May  8 10:21 255 -> /var/tmp/test.sh

這裡的255對應的檔案就是我們的指令碼,在這裡直接編輯255這個檔案

[root@en fd]# vi 255

#!/bin/bash
echo 111111
sleep 60
echo 333333

修改後儲存退出,此時就會執行修改後的指令碼了。

 

要注意一點,如果是直接修改原指令碼檔案會出現什麼結果呢?

當改完後,再看fd下的檔案,會發現:

[root@en fd]# ll
total 0
lrwx------ 1 root root 64 May  8 10:27 0 -> /dev/pts/0
lrwx------ 1 root root 64 May  8 10:27 1 -> /dev/pts/0
lrwx------ 1 root root 64 May  8 10:27 2 -> /dev/pts/0
lr-x------ 1 root root 64 May  8 10:27 255 -> /var/tmp/test.sh~ (deleted)

被標記了已經刪除,系統會認為原來的指令碼檔案已經找不到了,所有修改後是不會執行的。

如果是一個for迴圈就不會生效了,如:

for i in 1 2 3 4;do

echo $i

sleep 60

done

類似這樣的指令碼,執行中要加一些元素到迴圈中是做不到的,如想修改為:

for i in 1 2 3 4 5 6 7;do

echo $i

sleep 60

done