skel: update .shrc as well

Somehow we end up having 2 definition of the same .shrc in the source
tree, both of them should have been updated.

A batter fix would be to only keep one copy of the same file. but that
would be for another commit

Reported by:	lme
This commit is contained in:
Baptiste Daroussin 2021-10-20 11:23:13 +02:00
parent 3f550f0191
commit 5fe9737348

View File

@ -31,6 +31,14 @@ alias g='egrep -i'
# alias mv='mv -i'
# alias rm='rm -i'
# # csh like history on arrow up and down
bind ^[[A ed-search-prev-history
bind ^[[B ed-search-next-history
# # ctrl+arrow allow to jump from words to words
bind "\\e[1;5C" em-next-word
bind "\\e[1;5D" ed-prev-word
alias history='fc -l'
# set prompt: ``username@hostname:directory $ ''
PS1="\u@\h:\w \\$ "