Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
シェルスクリプトのターミナルウィンドウのサイズに関係なく、文字「=」を行末までエコーしたい
私はこれを行うことができます:
echo -e "\e[1;35;40m =======================================================================================\e[0m"
しかし、それは単なるランダムな行です。行末に達するまで文字を繰り返したい。これどうやってするの?
for i in $(seq 1 $(stty size | cut -d' ' -f2)); do echo -n "=" done