I have a gitlab process running under the username gitlab-+
. I would like to kill all processes from the user.
When I try:
pkill -9 -u gitlab-+
It comes back with invalid user name. I tried
pkill -9 -u gitlab* with the same result. How can I specify a wildcard in the `-u` argument for `pkill`