listing processes in exclude list by name rather than PID Checking on what’s currently split out from the VPN tunnel: this provide a listing of processes currently excluded from the VPN tunnel by name (in a couple of options): In Bash: # list full command line info associated with each PID in list function mullvad-list-excluded-processes-by-long-name () { mullvad_vpn_exclude_array =( $( mullvad split-tunnel list ) ) mvre = '^[0-9]+$' printf "Processes excluded from VPN tunnel: " " ${ mullvad_vpn_exclude_array [ $key ] } " " $( ps -p " ${ mullvad_vpn_exclude_array [ $key ] } " -o command = ) " fi done } # list just process name info associated with each PID in list function mullvad-list-excluded-processes-by-short-name () { mullvad_vpn_exclude_array =( $( mullvad split-tunnel list ) ) mvre…