Sha256: 98d73bcfc7b3131e725802bbb83592474a353a7f1cf1fc4dfe6e69eff1a11c0a
Contents?: true
Size: 182 Bytes
Versions: 181
Compression:
Stored size: 182 Bytes
Contents
#!/bin/bash echo "Kill All Authentication Scripts" for pid in `ps -aef | grep './authentication_script' | grep -v grep | awk '{print $2}'` do echo $pid kill -9 $pid done
Version data entries
181 entries across 181 versions & 3 rubygems