Closed. This question is off-topic. It is not currently accepting answers. Learn more
想改进这个问题吗?Update the question所以堆栈溢出的值小于aa>。
6年前关闭。
在Linux中,什么是反转传递给shell脚本的命令行参数的最佳方法?

最佳答案

不确定“最佳”,但这应该有效:

for i; do args="$i $args"; done
set -- $args

请注意,这不会影响$0

关于linux - Shell脚本中的反向命令行参数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15794598/

10-12 04:25