8 lines
148 B
Bash
Executable File
8 lines
148 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
|
|
if [[ -d "$HOME/.shortcuts" ]]; then
|
|
cp "$SUB/.shortcuts/*" "$HOME/.shortcuts"
|
|
else
|
|
cp -r "$SUB/.shortcuts" "$HOME"
|
|
fi |