6 lines
74 B
Bash
6 lines
74 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
for package in git vim bash; do
|
||
|
stow -t $HOME $package
|
||
|
done
|