3 lines
83 B
Bash
3 lines
83 B
Bash
|
#! /bin/sh
|
||
|
for file in *; do [ -d "$file" ] && stow "$file" --target="$HOME"; done
|