1. 取得进程号:
#ps -ef|grep app_name
root 1773 633 99 03:51 ttyS0 00:01:48 ./app_name 3
root 1809 757 0 03:53 pts/0 00:00:00 grep app_name
2.查看打开的文件:
# ls -la /proc/1773/fd
dr-x------ 2 root root 0 Jan 1 03:52 .
dr-xr-xr-x 6 root root 0 Jan 1 03:51 ..
lrwx------ 1 root root 64 Jan 1 03:55 0 -> /dev/ttyS0
lrwx------ 1 root root 64 Jan 1 03:55 1 -> /dev/ttyS0
lrwx------ 1 root root 64 Jan 1 03:55 10 -> /dev/ttyS2
lrwx------ 1 root root 64 Jan 1 03:55 11 -> /dev/ttyS3
lr-x------ 1 root root 64 Jan 1 03:55 12 -> /dev/mice
lrwx------ 1 root root 64 Jan 1 03:55 13 -> /mnt/tmp/xx.db
lrwx------ 1 root root 64 Jan 1 03:55 14 -> /mnt/tmp/xx.db
lrwx------ 1 root root 64 Jan 1 03:55 15 -> /mnt/tmp/xx.db
lrwx------ 1 root root 64 Jan 1 03:55 16 -> /mnt/tmp/xx.db
lr-x------ 1 root root 64 Jan 1 03:55 17 -> /mnt/tmp/xx.dat
lr-x------ 1 root root 64 Jan 1 03:55 18 -> /mnt/tmp/xx.dat
lr-x------ 1 root root 64 Jan 1 03:55 19 -> /mnt/tmp/xx.vob
lrwx------ 1 root root 64 Jan 1 03:52 2 -> /dev/ttyS0
lr-x------ 1 root root 64 Jan 1 03:55 20 -> /mnt/tmp/xx.vob
lrwx------ 1 root root 64 Jan 1 03:55 26 -> socket:[1537]
lrwx------ 1 root root 64 Jan 1 03:55 3 -> /dev/brcm0
lrwx------ 1 root root 64 Jan 1 03:55 4 -> /dev/mem
lrwx------ 1 root root 64 Jan 1 03:55 5 -> /dev/mem
lrwx------ 1 root root 64 Jan 1 03:55 6 -> /dev/mem
lrwx------ 1 root root 64 Jan 1 03:55 9 -> /dev/ttyS1
#