mirror of
https://github.com/bertptrs/vimconfig.git
synced 2025-12-25 12:30:32 +01:00
8 lines
157 B
Bash
Executable File
8 lines
157 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "$( dirname "${BASH_SOURCE[0]}" )"
|
|
|
|
find . -maxdepth 1 -mindepth 1 -type d -print0 | \
|
|
xargs -0 -n 1 basename | \
|
|
xargs stow -D -t "$HOME"
|