我目前正在使用它来启动mutt
或irssi
:
urxvt -name Irssi/Mutt screen -r Irssi/Mutt
目前,在使用启动器之前,我必须执行以下操作:
screen -S Irssi/Mutt irssi/mutt + Ctrl-a-d
我想做的是:
if [ test_to_see_if_the_screen_exit ] # I need a way to the test
then
urxvt -name Irssi/Mutt -e screen -r Irssi/Mutt
else
create_the_screen_named_Irssi/Mutt_and_detach_it # I need a way to create it
urxvt -name Irssi/Mutt -e screen -r Irssi/Mutt
endif
有没有人有办法解决吗?