在阅读了最近在SO上回答的问题之后,我想快速简单地检查我的IP地址.为了将来参考,有没有办法使以下别名工作?
alias myip='python -c "from urllib import urlopen; print urlopen("http://whatismyip.appjet.net").read()[:-1]"'
Matthew Scha.. 7
alias myip="python -c 'from urllib import urlopen; print urlopen(\"http://whatismyip.appjet.net\").read()[:-1]'"
您需要在别名中使用单引号来阻止bash尝试解释其中的部分代码.在处理别名本身时,双引号上的转义被剥离.
alias myip="python -c 'from urllib import urlopen; print urlopen(\"http://whatismyip.appjet.net\").read()[:-1]'"
您需要在别名中使用单引号来阻止bash尝试解释其中的部分代码.在处理别名本身时,双引号上的转义被剥离.
引用里面的双引号:
alias myip='python -c "from urllib import urlopen; print urlopen(\"http://whatismyip.appjet.net\").read()[:-1]"'
也可以用curl完成:
alias myip='curl "http://whatismyip.appjet.net"'
或使用wget:
alias myip='wget -O - "http://whatismyip.appjet.net" 2>/dev/null'