1
我想在父進程的新會話中執行我的子進程,在linux上我可以使用bash命令「setsid」,但無法在freebsd上找到相應的bash命令。如何在freebsd的不同會話中執行子進程
父腳本:
#!/bin/bash
setsid exec $script
子腳本:
#!/bin/bash
while (1)
do
//some code//
done
這是我試圖運行腳本:但它會超時FreeBSD作爲 「setsid」 命令未發現freebsd,但它在linux中工作。