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.
このコマンドでカウセイを出力するbashスクリプト内にカスタムmotdがあります。
/usr/games/fortune | cowsay -f www
タブまたはスペースで出力をシフトするなど、この出力をフォーマットする方法があるかどうかを知りたいですか? 各行を手動でフォーマットするテキストをループする必要がありますか、それともより短い/より良い方法がありますか?
前もって感謝します
を使用sedして、出力の先頭に他のテキストを追加できます。次のコマンドは、各行の先頭にタブを追加します。
sed
/usr/games/fortune | cowsay -f www | sed -e 's/^/\t/'