i need to get a list or any other enumerable class with info about any connected SCSI-disks, with info just like /proc/scsi/sg/devices Please help me and thanks in advance

link|improve this question
What is wrong with just running a awk/perl/python script over /proc/scsi/sg/devices? – Soren Jan 14 at 23:34
feedback

1 Answer

up vote 2 down vote accepted

You've basically named a solution in your question -- just open /proc/scsi/sg/devices and read from it.

link|improve this answer
isn't there a more elegant way? – skeleten Jan 14 at 22:29
@skeleten - On Unix, everything is a file. – casualcoder Jan 15 at 2:46
There isn't. procfs is the only way to get access to a lot of data -- for instance, most of the information displayed by tools like ps and top is pulled straight out of procfs. – duskwuff Jan 15 at 5:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.