Last active
March 16, 2017 18:16
-
-
Save deadPix3l/b1510fd6bbad9c3fee9bf2ebe3cf2c63 to your computer and use it in GitHub Desktop.
aliases that i havent gotten around to adding yet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
################## | |
# PS1 uses # | |
################## | |
PS1a - \u@\h\$ | |
PS1b - "\$ " | |
########################### | |
# useful utilities # | |
########################### | |
ping8 - ping -c4 8.8.8.8 | |
ch7 - chmod 755 | |
####################### | |
# code clean-up # | |
####################### | |
rstrip - sed 's/\s+$//' # remove whitespace from end of line | |
tab2space - sed 's/\t/ /g' # replace tabs with four spaces | |
linelength - awk 'length>79' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment