多个引号内的 Shell 脚本变量

发布于 2024-12-18 07:24:45 字数 199 浏览 1 评论 0原文

我正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空城缀染半城烟沙 2024-12-25 07:24:45

将它们放在单引号中,就像这样 -

osascript -e 'tell application "System Events" to keystroke '$1''

Put them in single quotes, like this -

osascript -e 'tell application "System Events" to keystroke '$1''
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文