以下问题与发布在此问题上的答案有关:
我喜欢创建我自己的函数来打开一个新终端的概念,因此 Craig Walker 在上述问题中链接到的脚本适合我的需要。该脚本由 Mark Liyanage 编写,可在此处找到。
那个脚本是这样的:
#!/bin/sh
#
# Open a new Mac OS X terminal window with the command given
# as argument.
#
# - If there are no arguments, the new terminal window will
# be opened in the current directory, i.e. as if the command
# would be "cd `pwd`".
# - If the first argument is a directory, the new terminal will
# "cd" into that directory before executing the remaining
# arguments as command.
# - If there are arguments and the first one is not a directory,
# the new window will be opened in the current directory and
# then the arguments will be executed as command.
# - The optional, leading "-x" flag will cause the new terminal
# to be closed immediately after the executed command finishes.
#
# Written by Marc Liyanage <http://www.entropy.ch>
#
# Version 1.0
#
if [ "x-x" = x"$1" ]; then
EXIT="; exit"; shift;
fi
if [[ -d "$1" ]]; then
WD=`cd "$1"; pwd`; shift;
else
WD="'`pwd`'";
fi
COMMAND="cd $WD; $@"
#echo "$COMMAND $EXIT"
osascript 2>/dev/null <<EOF
tell application "Terminal"
activate
do script with command "$COMMAND $EXIT"
end tell
EOF
我对链接站点上的脚本进行了一项更改;我注释掉了输出“$COMMAND $EXIT”的行以消除一些冗长。但是,当我运行脚本时,我仍然得到这个输出
tab 1 of window id 2835
就在它打开新窗口并执行我传入的命令之前。任何想法为什么会发生这种情况?(在调用 oascript 之前,我尝试将 stderr 的重定向移动到 /dev/null,但这并没有什么区别。)