9 lines
No EOL
264 B
Bash
Executable file
9 lines
No EOL
264 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
# Create folder
|
|
ssh hod.emersa.it "mkdir -p chatstream"
|
|
|
|
tar --exclude='./.git' --exclude='./node_modules' --zstd -cvf - . \
|
|
| ssh hod.emersa.it tar -C chatstream --zstd -xvf -
|
|
|
|
# ssh -N hod.emersa.it "cd chatstream; pkill -f node; ./start.sh &" |