9 lines
135 B
Bash
Executable file
9 lines
135 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cd "$HOME"
|
|
for FILE in config/*; do
|
|
pushd "$HOME"
|
|
DOTFILE=".${FILE##*/}"
|
|
ln -s "$FILE" "$DOTFILE"
|
|
popd
|
|
done
|