多个引号内的 Shell 脚本变量
我正在 shell 脚本中运行以下行:
osascript -e 'tell application "System Events" to keystroke "$1"'
我希望能够使用 applescript 键入 $1。有没有办法让 $1 作为我在脚本之后在终端中输入的内容出现?现在,它只需输入字面上的 $1。
I am running the following line within a shell script:
osascript -e 'tell application "System Events" to keystroke "$1"'
I want to be able to type the $1 using applescript. Is there any way for the $1 to come out as what I type in to the terminal after the script? Now, it just types literally $1.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将它们放在单引号中,就像这样 -
Put them in single quotes, like this -