26 lines
170 B
Bash
Executable File
26 lines
170 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
##
|
|
|
|
echo "what up????"
|
|
|
|
####
|
|
|
|
cd /yankee-gnome-fire-consumer
|
|
|
|
pwd
|
|
|
|
ls
|
|
|
|
whoami
|
|
|
|
pkill -f "python3 consumer.py"
|
|
|
|
sleep 4
|
|
|
|
python3 consumer.py
|