8 lines
105 B
Bash
8 lines
105 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
git pull
|
||
|
|
||
|
echo "Ready"
|
||
|
sleep 5
|
||
|
kill $(ps x | grep konsole | grep "${0}" | awk '{print $1}')
|