Linux下使用hostname命令自动获取IP
通过hostname命令可以自动获取IP,然后可以在Linux环境shell命令行开头加上IP地址。
修改用户文件.bash_profile
里PS1变量值:
IP=$( hostname -I | cut -d" " -f1 )
export PS1="[\u@\[\e[31m\]$IP\[\e[m\](\h) \W]\\$ "
通过hostname命令可以自动获取IP,然后可以在Linux环境shell命令行开头加上IP地址。
修改用户文件.bash_profile
里PS1变量值:
IP=$( hostname -I | cut -d" " -f1 )
export PS1="[\u@\[\e[31m\]$IP\[\e[m\](\h) \W]\\$ "