I hereby claim:
- I am gkawamoto on github.
- I am gkawamoto (https://keybase.io/gkawamoto) on keybase.
- I have a public key ASBAXYuZsnuQjbOLJaV73J5Ugo6oJTzNRo-VfYGJDEZryQo
To claim this, I am signing this object:
#!/bin/bash | |
[ $# -lt 1 ] && { | |
echo 'inform the pid' >&2 | |
exit 1 | |
} | |
pid=$1 | |
while true | |
do | |
ps -o pid,cmd -p $pid | |
[ $pid -eq 1 ] && break |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# Download | |
wget https://github.com/pgbackrest/pgbackrest/archive/release/2.19.tar.gz | |
# Uncompress | |
tar xfvz 2.19.tar.gz | |
cd pgbackrest-release-2.19/src/ | |
# Dependencies |
#!/bin/bash | |
# Download | |
wget https://github.com/pgbackrest/pgbackrest/archive/release/2.19.tar.gz | |
# Uncompress | |
tar xfvz 2.19.tar.gz | |
cd pgbackrest-release-2.19/src/ | |
# Dependencies |
package main | |
import ( | |
"bytes" | |
"encoding/csv" | |
"encoding/xml" | |
"io" | |
"net/http" | |
"os" | |
) |