9 lines
128 B
Bash
Executable File
9 lines
128 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
for f in $(ls --ignore="*.sh" --ignore="*.md")
|
|
do
|
|
# echo $f
|
|
ln -s "$(pwd)/$f" "$HOME/.${f##*/}"
|
|
done
|
|
|