Comandament Linux per veure quins processos FDServer no estan controlats, es a dir, no surten a un fdstat -ps

Processos ps -ef | grep -i fdserver contra fdstat -ps

Bash
rm -f /tmp/f1.txt; rm -f /tmp/f2.txt; rm -f /tmp/fdstat.txt; fdstat -ps -v -f:/tmp/fdstat.txt;cat /tmp/fdstat.txt | awk '{print $2}' > /tmp/f1.txt; ps -ef | grep -i fdserver | awk '{print $2}' > /tmp/f2.txt; sort -o /tmp/f1.txt /tmp/f1.txt; sort -o /tmp/f2.txt /tmp/f2.txt ; comm -3 /tmp/f1.txt /tmp/f2.txt