This file contains hidden or 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
( cat <<EOT | |
anonymize () { | |
[ ! -z \$PS1 ] && export PS2=\$PS1; | |
export PS1='user@host:~\$ '; | |
} | |
unanonymize () { | |
[ ! -z \$PS2 ] && export PS1=\$PS2; | |
unset PS2; |
This file contains hidden or 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
# screw with somebody (put in ~/.bashrc or ~/.bash_profile) | |
function uptime { | |
/usr/bin/uptime | sed -re 's/up[^,]+/up 99999 days/g'; | |
} |
NewerOlder