Compare commits

..

No commits in common. "8c126dabb336e63276a26d41699129e9a3d23d84" and "6e89eb47fb8a3795b192fd66ed9f67c1c942b715" have entirely different histories.

2 changed files with 21 additions and 24 deletions

View File

@ -1,24 +1,3 @@
# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth
##
## history: http://mywiki.wooledge.org/BashFAQ/088
##
# Big history
HISTFILESIZE=10000
HISTSIZE=10000
HISTTIMEFORMAT="%Y-%m-%d %H:%M:%S "
# history -a causes an immediate write of all new history lines
# (instead of upon shell exit)
PROMPT_COMMAND="history -a; ${PROMPT_COMMAND}"
# histappend which causes all new history lines to be appended, and ensures
# that multiple logins do not overwrite each other's history
shopt -s histappend
if which atuin > /dev/null 2>&1 ; then if which atuin > /dev/null 2>&1 ; then
ATUIN_SESSION=$(atuin uuid) ATUIN_SESSION=$(atuin uuid)
export ATUIN_SESSION export ATUIN_SESSION
@ -54,4 +33,25 @@ if which atuin > /dev/null 2>&1 ; then
if [[ -z $ATUIN_NOBIND ]]; then if [[ -z $ATUIN_NOBIND ]]; then
bind -x '"\C-r": __atuin_history' bind -x '"\C-r": __atuin_history'
fi fi
else
# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth
##
## history: http://mywiki.wooledge.org/BashFAQ/088
##
# Big history
HISTFILESIZE=10000
HISTSIZE=10000
HISTTIMEFORMAT="%Y-%m-%d %H:%M:%S "
# history -a causes an immediate write of all new history lines
# (instead of upon shell exit)
PROMPT_COMMAND="history -a"
# histappend which causes all new history lines to be appended, and ensures
# that multiple logins do not overwrite each other's history
shopt -s histappend
fi fi

View File

@ -1,3 +0,0 @@
#!/bin/sh
find . -name '*:*' -type f -print0 | perl -0ne 'rename $_, s{[^/]+$}{$& =~ y/:/-/r}res or warn "rename $_: $!"'