#!/bin/bash if [[ $(id -u) -ne 0 ]]; then sudo $0 else diff <(sleep 1 ; lsof -n -P| grep -v "^\(sleep\|lsof\|grep\|diff\|bash\)" ) <(lsof -n -P| grep -v "^\(sleep\|lsof\|grep\|diff\|bash\)" ) fi