deluser.sh 131 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 #!/bin/env sh [[ $# -ne 1 ]] && exit ID=$1 echo "Delete user ${ID}" curl -i --request DELETE http://localhost:8080/users/${ID}