にawkコマンドの出力を保存することができません:私は次の操作を実行しようとしている変数
#!/bin/bash
echo "Enter Receiver HostNames (comma separated hostname list of receivers):"
read receiverIpList
receiver1=`$receiverIpList|awk -F, '{print $1}'`
echo $receiver1
私はエラーの下に取得していますスクリプトを実行したとき。
./test1.sh
Enter Receiver IP Addresses (comma separated IP list of receivers):
linux1,linux2
./test1.sh: line 6: linux1,linux2: command not found
誰かがスクリプトの何が間違っているか教えてください。
これはPowerShellとは関係ありません... – thepip3r
[誰かが私の質問に答えるとどうすればいいですか?](http://stackoverflow.com/help/someone-answers) – Cyrus