tr -s "[:space:]" とすると、連続した空白スペースを1つにすることができる。
何もしないパターン
❯ echo "hello it's a sunny day"
hello it's a sunny day
tr -s "[:space:]"にパイプで渡して出力したパターン
❯ echo "hello it's a sunny day" | tr -s "[:space:]"
hello it's a sunny day
参考
【3週間で学ぶ】Amazon Linux Bash シェルスクリプト実践講座!!初心者でも1からマスターする
https://www.udemy.com/course/30awslinux/
Discussion