我有一个 bash 脚本,可以执行其他操作,MY_IP="$(ifconfig en0 inet)"
但显然 Ubuntu 20.04 / Hyper-V / WSL2 没有 ifconfig。
有没有办法安装它,还是我需要重写脚本来解决它?如果是这样,有什么好的解决方法吗?
谢谢!
答案1
按照https://linuxconfig.org/how-to-install-missing-ifconfig-command-on-debian-linux- ipconfig 已被弃用(这意味着您理想情况下应该重写脚本以使用 IP)。
也就是说,您可以“apt install net-tools”来安装旧的 ifconfig 包,而且它应该可以“正常运行”。