10 lines
269 B
Bash
Executable file
10 lines
269 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if ! test -d ~/.dotfiles; then
|
|
echo "installing dotfiles..."
|
|
fi
|
|
|
|
find -- * -type f -name "*.org" | while read -r file; do
|
|
echo "installing ${file} configuration..."
|
|
# emacs --batch "${file}" -f package-initialize --eval '(org-babel-tangle)'
|
|
done
|