@PROCESSIO[pid, option] : Returns the I/O information for a process.
pid - The Process ID
option - The requested info:
0 - The number of read operations performed
1 - The number of write operations performed
2 - The number of I/O operations performed, other than read and write operations
3 - The number of bytes read
4 - The number of bytes written
5 - The number of bytes transferred during operations other than read and write operations
Examples:
echo %_pid
33472
echo %@processio[33472,0]
187
echo %@processio[33472,1]
767
echo %@processio[33472,4]
188229