gpt4 book ai didi

linux - 'set -- $REPLY' 是做什么的?

转载 作者:太空狗 更新时间:2023-10-29 11:14:18 25 4
gpt4 key购买 nike

#!/bin/bash 
command1 |while read
do
set -- $REPLY
command2
done

我在浏览网页时偶然发现了这段代码。“set -- $REPLY”有什么作用?

最佳答案

它将 $REPLY 拆分为标记并将它们放入 $@(参数)

$REPLYwhile read 表达式的隐式目标。但是请记住,使用带有隐式目标的 while read 是一种 bash 主义,它在例如ash(但在 zsh 中受支持)。最好使用 while read REPLY

关于linux - 'set -- $REPLY' 是做什么的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23188443/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com