I did the commands (source):
$ exec 3>/tmp/thirdfile
$ exec 4>/tmp/fourthfile
$ echo drib >&3
$ echo drab >&4
$ echo another drib >&3
$ echo another drab >&4
$ exec 3>&-
$ exec 4>&-
How can I see the file handles, something like with "lsof -l"?
|
1
|
I did the commands (source):
How can I see the file handles, something like with "lsof -l"?
|
|||
|
|
|
I don't understand, why not just use lsof:
You can also limit to just file descriptors like:
|
||
|
|
|
|
On Linux, you can do something like Of course, substitute |
||
|
|