Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 264 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 264 Bytes

NO WARRANTY!

stow <dir>
stow <dir> --override
stow <dir> --adopt # adopts file
stow <dir> --restow # (first unstow, then stow again)

# stow all dirs at once (not recommended)
for dir in */; do
  [[ "$dir" == ".git/" ]] || stow "$dir" --simulate
done