myip alias.
This commit is contained in:
parent
a6efd30db7
commit
8fc442eb91
@ -40,6 +40,8 @@ alias rm="rm -i"
|
|||||||
# Gzip-enabled `curl`
|
# Gzip-enabled `curl`
|
||||||
#alias gurl="curl --compressed"
|
#alias gurl="curl --compressed"
|
||||||
|
|
||||||
|
alias myip="ifconfig | grep 'inet ' | grep -v 127.0.0.1 | awk '{print \$2}'"
|
||||||
|
|
||||||
# Software/libraries update
|
# Software/libraries update
|
||||||
alias update="source "$HOME/dotfiles/setup/update.sh""
|
alias update="source "$HOME/dotfiles/setup/update.sh""
|
||||||
|
|
||||||
|
@ -290,6 +290,8 @@ EOF
|
|||||||
# Usage: server [port]
|
# Usage: server [port]
|
||||||
function server() {
|
function server() {
|
||||||
local port="${1:-8000}"
|
local port="${1:-8000}"
|
||||||
|
echo "Access from network: http://$(myip):$port"
|
||||||
|
echo
|
||||||
open "http://localhost:${port}/"
|
open "http://localhost:${port}/"
|
||||||
# Set the default Content-Type to `text/plain` instead of `application/octet-stream`
|
# Set the default Content-Type to `text/plain` instead of `application/octet-stream`
|
||||||
# And serve everything as UTF-8 (although not technically correct, this doesn’t break anything for binary files)
|
# And serve everything as UTF-8 (although not technically correct, this doesn’t break anything for binary files)
|
||||||
@ -301,6 +303,6 @@ function sayit() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# Add special aliases that will copy result to clipboard (escape → escape+)
|
# Add special aliases that will copy result to clipboard (escape → escape+)
|
||||||
for cmd in password hex2hsl hex2rgb escape codepoint ssh-key; do
|
for cmd in password hex2hsl hex2rgb escape codepoint ssh-key myip; do
|
||||||
eval "function $cmd+() { $cmd \$@ | c; }"
|
eval "function $cmd+() { $cmd \$@ | c; }"
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user