12 lines
250 B
Bash
12 lines
250 B
Bash
#!/bin/bash
|
|
|
|
# Provide credentials to papatcher
|
|
# Enter your pa credentials below
|
|
PA_USER="pauser"
|
|
PA_PASSWORD="papassword"
|
|
|
|
(echo "$PA_USER"; sleep 1s; echo $PA_PASSWORD) | go run papatcher.go
|
|
|
|
echo "Do not care of previous error message !"
|
|
exit 0
|