大家好,小弟最近在玩ethtool這東西並嘗試寫了個簡單的語法
但是發現只要他是變數我的scrpit就會出錯
#!/bin/sh
KR1S= $(ethtool eth1 | grep 'Speed' | cut -d ' ' -f 2)
if [ "$KR1S" == "Unknown!" ] ; then
sleep 1s
echo "# Speed ...PASS"
else
echo "# Speed ...FAIL"
fi
執行後跳出
./test.sh: line 3: Unknown!: command not found