bash/shell の第一人者は、以下を処理する本当に単純な bash スクリプトを作成するのを手伝ってくれますか? これらの行に沿って動作させるのに苦労しています
入力は以下の通り
./script #channel1,#channel2,#channel3 "This is the message"
またはもっと簡単なら..
./script #channel1,#channel2,#channel3 -m This is the message
(-m の後のものはすべてメッセージです)
ここで、各チャネルをループして、メッセージをエコーします。
for channel in channels
echo channel $message
fi
ありがとう