如何创建脚本来定位网络计算机的公共 IP 地址?

如何创建脚本来定位网络计算机的公共 IP 地址?

我真的很难找到这个问题的解决方案。如果你们能把脚本放到 nano 中,我将不胜感激。

答案1

如果您想要获取公共 IP 地址,则只需要此命令curl ipinfo.io/ip
但如果您想使用 shell 脚本,请按照下列步骤操作:

  • 在终端中运行此命令nano script.sh
  • 把这些行放入你的脚本中:

    #!/bin/bash
    curl ipinfo.io/ip
    
  • Ctrl+x然后y保存更改。

  • 运行chmod +x script.sh以使您的脚本可执行

要运行脚本,请使用:

./script.sh

相关内容