답변:
레일 개발을 할 때 4 개의 탭을 시작하는 데 사용하는 방법은 다음과 같습니다.
guake --rename-tab="Rails Server" --execute-command="cd ~/Aptana\ Studio\ 3\ Workspace/sample_app/ && rails s" &
sleep 2 &&
guake --new-tab=2 --rename-tab="Rails Test" --execute-command="cd ~/Aptana\ Studio\ 3\ Workspace/sample_app/ && 'autotest'" &
sleep 2 &&
guake --new-tab=3 --rename-tab="Rails Console" --execute-command="cd ~/Aptana\ Studio\ 3\ Workspace/sample_app/ && rails console" &
sleep 2 &&
guake --new-tab=4 --rename-tab="Rails Terminal" --execute-command="cd ~/Aptana\ Studio\ 3\ Workspace/sample_app/ && clear" &
매력처럼 작동합니다 :)
명령 줄 매개 변수가 지원할 수 있습니다.
#/bin/sh
# Just to be sure Guake is running.
# Guake handles multiple starting, won't create new instances
guake &
# Select first (0th) tab and rename it and execute something.
guake -s 0
sleep 1
guake -r "this-is-top"
sleep 1
guake -e top
sleep 1
# create a new tab in the ~ folder
guake -n ~
# rename the tab
guake -r "this-is-now-htop"
sleep 1
guake -e htop
sleep 1
guake -n ~
guake -n ~
guake -n ~
'수면'은 안전한 실행을 위해 있으며, 내 컴퓨터에서 이상한 일이 발생하지 않으면 자유롭게 실험 해보십시오. 스크립트가 이미 실행 중이거나 실행 중이 아니 었습니다.