Archive for January 17th, 2008

How many files are open ?

Thursday, January 17th, 2008

Most probably to find the answer in Linux, you will type this command at terminal (shell): lsof | wc -l lsof will give a row of open files and the result is piped(|) to word count (wc) command that counts the rows/lines (-l)