Difference between revisions of "Centos Oneliners"
From Brian Nelson Ramblings
(Created page with "==Centos Oneliners== kill all pts -------------------- for x in $(ps aux | grep pts| awk '{print $2}'); do kill $x; done") |
(→Centos Oneliners) |
||
| Line 1: | Line 1: | ||
==Centos Oneliners== | ==Centos Oneliners== | ||
| + | This will be a place to save my oneliners | ||
| + | |||
| + | ===Centos Oneliners=== | ||
| + | kill all pts | ||
| − | |||
| − | |||
for x in $(ps aux | grep pts| awk '{print $2}'); do kill $x; done | for x in $(ps aux | grep pts| awk '{print $2}'); do kill $x; done | ||
| + | |||
| + | ===Apache Oneliners=== | ||
| + | |||
| + | |||
| + | ===Mysql Oneliners=== | ||
| + | |||
| + | ===Qmail Oneliners=== | ||
Revision as of 00:30, 3 December 2013
Contents
Centos Oneliners
This will be a place to save my oneliners
Centos Oneliners
kill all pts
for x in $(ps aux | grep pts| awk '{print $2}'); do kill $x; done