gpt4 book ai didi

shell - 我如何回显相同的字符直到行尾

转载 作者:行者123 更新时间:2023-12-04 08:27:40 33 4
gpt4 key购买 nike

我想回显字符“=”直到行尾独立于 shell 脚本的终端窗口大小

我只能这样做:

echo -e "\e[1;35;40m =======================================================================================\e[0m"

但这只是一条随机线。我希望角色重复直到行尾。我怎样才能做到这一点?

最佳答案

for i in $(seq 1 $(stty size | cut -d' ' -f2)); do 
echo -n "="
done

关于shell - 我如何回显相同的字符直到行尾,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13696753/

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