6 lines
85 B
Bash
Executable file
6 lines
85 B
Bash
Executable file
#!/bin/sh
|
|
|
|
for f in *; do
|
|
[ -d "$f" ] && ln -svf "$PWD/$f" "$HOME/.config"
|
|
done
|
|
|