9 lines
125 B
Bash
9 lines
125 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# 1. list dirs
|
||
|
# 2. pipe them into stow
|
||
|
# 3. stow them at ~
|
||
|
# 4. be verbose
|
||
|
|
||
|
/bin/ls -d */ | xargs stow -t ~ -v
|