diff options
author | Franck Cuny <fcuny@twitter.com> | 2018-11-18 17:13:59 -0800 |
---|---|---|
committer | Franck Cuny <fcuny@twitter.com> | 2018-11-18 17:13:59 -0800 |
commit | d04e08eed79d64ad29a9604fdacb937f4e33a079 (patch) | |
tree | aec0114ed630fc055ee9b9000fe2e4316dab0c52 /configs | |
parent | [tmux] Add comments and don't display status. (diff) | |
download | emacs.d-d04e08eed79d64ad29a9604fdacb937f4e33a079.tar.gz |
[bash] Add '#' at the beginning of the prompt
To avoid pasting by accident the same line, add a '#' at the beginning of the prompt. Cleanup.
Diffstat (limited to '')
-rwxr-xr-x | configs/rcs/bashrc | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/configs/rcs/bashrc b/configs/rcs/bashrc index adb50eb..42585a0 100755 --- a/configs/rcs/bashrc +++ b/configs/rcs/bashrc @@ -10,7 +10,7 @@ export GOPATH="${HOME}/workspace/go" [ -z "$PS1" ] && return # prompts -export PS1="\h:\w % " +export PS1="#\h:\w % " RC_DIR=$(dirname $(readlink ${BASH_SOURCE[0]})) @@ -47,12 +47,8 @@ alias rm="rm -i" alias g="git" alias s="cd ~/workspace/git.twitter.biz/source" -alias upload-transactions='smpl-transactions --project fcuny-finance --dataset finance' - -alias gohomedevbox="ssh -A 192.168.86.157" -alias gobastion="gcloud compute ssh bastion" - alias gomesosbuild="ssh -A smf1-egu-15-sr1.prod.twitter.com" alias smf1pending='curl -s https://aurora-smf1.twitter.biz/pendingtasks | jq .' alias atlapending='curl -s https://aurora-atla.twitter.biz/pendingtasks | jq .' + |