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 関数を作成しようとしています。これまでに書いたコードは次のとおりです。
function txt_bold() {<br> echo -e '\033[1m$1\033[0m$2'<br> tput sgr0<br> }
私が書くtxt_bold "This is bold" "And this in plain text"と、「$1$2」(太字の$1)が返されます。ここで何が間違っていますか?
txt_bold "This is bold" "And this in plain text"