文件名后的 ZSH 参数

发布于 2025-01-01 07:43:14 字数 84 浏览 1 评论 0原文

我从 bash 切换到 zsh,我想知道是否有办法像 bash 一样将参数放在文件名后面 例子: cp dir1 dir2 -r

谢谢

I switched from bash to zsh and I was wondering if there was a way to put arguments after file name like in bash
Example:
cp dir1 dir2 -r

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

慈悲佛祖 2025-01-08 07:43:14

这仅取决于命令,而不取决于 shell。 shell 按照给定的顺序传递参数,并且不会对以 - 开头的参数进行特殊处理。

This depends only on the command, not on the shell. The shell passes the arguments in the order they're given, and makes no special treatment for arguments beginning with a -.

楠木可依 2025-01-08 07:43:14

zsh 在通配符和制表符补全方面有一些扩展/不同的功能(人们可能转向 zsh 的两个主要原因)。这两者都为您提供了添加命令行参数的有趣方法。你问的是这个吗?

另请注意,大多数命令不受您选择的 shell 的影响:lsawkgrepvim、显然,像 aliasfunction 这样的 shell 命令可能是不同的。

zsh has some expanded/different features in the area of globbing and tab completion (two of the primary reasons folks may switch to zsh). Both of these provide you interesting way to add command line parameters. Is that what you are asking about?

Note also that most commands are not impacted by the shell you choose: ls, awk, grep, vim, etc. Obviously things like alias and function that are shell commands are potentially different.

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