FIX: ~/xxx won't expand if xxx does not exists.

This commit is contained in:
Julien Palard 2016-07-23 12:40:46 +02:00
parent e0b3bd3528
commit 8940a3829f
3 changed files with 4 additions and 4 deletions

View File

@ -55,7 +55,7 @@ export LESS_TERMCAP_se=$'\E[0m' # fin
export LESS_TERMCAP_us=$'\E[01;32m' # début de souligné
export LESS_TERMCAP_ue=$'\E[0m' # fin
export DEBEMAIL DEBFULLNAME
export PATH="$PATH:~/mbin:~/.local/bin"
export PATH="$PATH:$(HOME)/mbin:$(HOME)/.local/bin"
export EDITOR=emacs
export LC_ALL='en_US.utf8'
export LS_OPTIONS='--color=auto'

3
add.sh
View File

@ -1,3 +0,0 @@
#!/bin/sh
rsync -bahv ./ ~/

3
copy_to_home.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
rsync -bahv --exclude=.git --exclude=README.md --exclude=add.sh ./ ~/