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