mirror of https://github.com/bjeanes/dotfiles.git
Remove unused save-directory stuff
parent
db1a0b347f
commit
0ca87f524a
|
@ -5,7 +5,6 @@ source $DOT_FILES/$CURRENT_SHELL/config.*sh
|
|||
source $DOT_FILES/shell/exports.sh
|
||||
source $DOT_FILES/shell/aliases.sh
|
||||
source $DOT_FILES/shell/functions.sh
|
||||
source $DOT_FILES/shell/save-directory.sh
|
||||
source $DOT_FILES/shell/prompt.sh
|
||||
source $DOT_FILES/shell/git.sh
|
||||
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
if [ ! -f ~/.dirs ]; then
|
||||
touch ~/.dirs
|
||||
fi
|
||||
|
||||
alias show='cat ~/.dirs'
|
||||
save (){
|
||||
command sed "/!$/d" ~/.dirs > ~/.dirs1
|
||||
mv ~/.dirs1 ~/.dirs; echo "$@"=\"`pwd`\" >> ~/.dirs
|
||||
source ~/.dirs
|
||||
}
|
||||
source ~/.dirs # Initialization for the above 'save' facility: source the .dirs file
|
Loading…
Reference in New Issue