我想回显字符“=”直到行尾独立于 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/

10-11 05:15