15 lines
132 B
Bash
15 lines
132 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# testing lsof with file descriptors
|
||
|
|
||
|
exec 3> test
|
||
|
exec 6> test
|
||
|
exec 7< test
|
||
|
|
||
|
lsof -a -p $$ -d0,1,2,3,6,7
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|