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