シェルスクリプトで「curl ifconfig.me」の動作が異なる

シェルスクリプトで「curl ifconfig.me」の動作が異なる

システムのパブリック IP を取得するために、シンプルなメニュー ベースのシェル スクリプトを試しました。(curl ifconfig.me) を使用しましたが、動作が異なっていることがわかりました。

ここで私は試しました:

anupam@JAZZ:~/Desktop$ cat menuui
#
# Script to create simple menus and take action according to that selection
# menu item
#
while :
do
    clear
    echo "___________________________________"
    echo "Main Menu"
    echo "___________________________________"
    echo "[1] Show Today's date/time"
    echo "[2] Show files in current directory"
    echo "[3] Show calendar"
    echo "[4] Start a calculator"
    echo "[5] Start editor to write letters"
    echo "[6] Show your public ip"
    echo "[7] Exit/Stop"
    echo "===================================="
    echo -n "Enter your menu choice[1-5]:"
    read yourch
    case $yourch in
    1) echo "Today is `date` ,press a key..." ; read ;;
    2) echo "Files in `pwd` "; ls -l;echo "Press a key..."; read;;
    3) cal; echo "Press a key..." ; read ;;
    4) bc;;
        5) vi;;
        6) echo "Your public ip is `curl ifconfig.me`";;
    7) exit 0 ;;
    *) echo "Opps!!! Please select choices 1,2,3,4 or 5";
    echo "Press a key...";read;;
    esac
done

そしてそれを実行しました... ここに画像の説明を入力してください

これは予想外でした。どうすれば解決できるでしょうか?

答え1

curlオプションと一緒に使用してください-sman curl

-s, --silent
          Silent  or  quiet  mode. Don't show progress meter or error mes‐
          sages.  Makes Curl mute. It will still output the data  you  ask
          for, potentially even to the terminal/stdout unless you redirect
          it.

進捗メーターやエラーメッセージなどの追加詳細は表示されません。変更されたステートメントは次のようになります。

echo "Your public ip is $(curl -s ifconfig.me)"

$()コマンド置換引用符よりも使用することをお勧めします``

関連情報