我有更改终端标题的功能。我希望将其传递给 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;
这没用。
有任何想法吗?
谢谢