Skip to content

Commit

Permalink
aliases: Fix ip address alias (cut, then column)
Browse files Browse the repository at this point in the history
  • Loading branch information
JIghtuse committed Jul 13, 2016
1 parent 542aef6 commit ff79f27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shell/.config/aliases
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ alias gt='gdb -tui -nh'
alias ct='cgdb -nh'
alias py='python3' # I often mistype it as pytohn, so let's not type it at all
alias ipy='ipython3'
alias i='ip -4 -oneline a | column -t | colrm 35'
alias i="ip -4 -o a|tr -s ' '|cut -d ' ' -f2,4|column -t"
alias tldr='man -s tldr'
alias g="g++ ${CXXFLAGS}"

0 comments on commit ff79f27

Please sign in to comment.