1

端末のタイトルを変更する機能があります。これを osascript コマンドに渡したいと思います。

私は試します:

function title {
  name=hostname
  printf "\033]0;$name %s\007" "$1"
}

osascript -e "tell application \"Terminal\"" \
    -e "tell application \"System Events\" to keystroke \"t\" using {command down}" \
    -e "do script \"title newTitle \" in front window" \
    -e "end tell"
    > /dev/null;

それは動作しません。

何か案は?

ありがとう

4

1 に答える 1