
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
#!/bin/bash
rm -rf /tmp/procs
ps -elf |awk {'print $3'} > /tmp/procs
cat /tmp/procs |sort |uniq -c|sort -n
rm -rf /tmp/procs
