mirror of
https://github.com/HerrCraziDev/dotfiles.git
synced 2025-12-13 09:36:16 +01:00
11 lines
176 B
Plaintext
Executable File
11 lines
176 B
Plaintext
Executable File
|
|
#!/bin/bash
|
|
|
|
if test -f "$1"; then
|
|
echo "Installing plugin $1..."
|
|
scp $1 bevin@chenco-server:~/Apps/paper/plugins/
|
|
echo "Done!"
|
|
else
|
|
echo "Error: '$1' is not a file."
|
|
fi
|