구성 파일의 #Update 키에 내 sed 명령이 있습니다. 변수 $ GETKEY 의 내용을 얻지 못합니다 누군가가 나를 도와 줍 니까?
# Get key from output of the website.
GETKEY=`wget https://www.badips.com/get/key -qO - | awk {'print $9'} | cut -d ":" -f3 | cut -d "}" -f1 | sed 's/\"//g'`
if [ $? -eq 0 ]
then
# Update key in config file.
sed -i 's/^\(KEY\s*=\s*\).*$/\1$GETKEY/' Config
fi