gpt4 book ai didi

linux - 有没有更好的方法来模拟标准输入?

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:16:49 25 4
gpt4 key购买 nike

我今天下午刚写了一个 bash 脚本。这很丑陋。所以我认为必须存在更好的方法来在这里实现 echo $x

for x in $(ls); do 
cp $x $(echo $x | sed s/\\./_holo_light./)
cp $x $(echo $x | sed s/\\./_holo_dark./)
done

最佳答案

改为这样做:

for x in *; do 
cp "$x" "${x/./_holo_light.}"
cp "$x" "${x/./_holo_dark.}"
done

关于linux - 有没有更好的方法来模拟标准输入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14953183/

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