1
0
mirror of https://github.com/balkian/dotfiles.git synced 2024-09-27 21:51:43 +00:00

Fixed ls only listing one file

This commit is contained in:
Fernando 2012-12-16 03:09:08 +04:00
parent 86d6b12725
commit f110f5d64b

View File

@ -9,7 +9,7 @@
dir=$(pwd) # dotfiles directory dir=$(pwd) # dotfiles directory
olddir=~/dotfiles$(date +%Y-%m-%d_%H:%M:%S) # old dotfiles backup directory olddir=~/dotfiles$(date +%Y-%m-%d_%H:%M:%S) # old dotfiles backup directory
files=($(ls --ignore="not_dots" --ignore="README.md" --ignore="make.sh" $dir)) # list of files/folders to symlink in homedir files=$(ls --ignore="not_dots" --ignore="README.md" --ignore="make.sh" $dir) # list of files/folders to symlink in homedir
########## ##########