Hm, only some heuristics - very fragile, but maybe they work for you:

Output of mount: a mounted CD/DVD has usually a filetype of iso9660 or udf and an ro attribute. USB sticks, -drives, iPods, etc. are often mounted with the flush attribute and might have filetype vfat (not sure: ntfs, msdos).

pb> mount | perl -ne '@mnt = split /\s+/; print "Stick? $mnt[0] $mnt[2 +]\n" if $mnt[4] =~ /vfat|msdos|ntfs/ && $mnt[5] =~ /flush/;' Stick? /dev/sdd1 /media/BLUESTICK Stick? /dev/sde /media/IPOD pb> mount | perl -ne '@mnt = split /\s+/; print "CD/DVD? $mnt[0] $mnt[ +2]\n" if $mnt[4] =~ /udf|iso\d+/ && $mnt[5] =~ /ro/;' CD/DVD? /dev/sr0 /media/SOYLENT_GREEN CD/DVD? /dev/sr1 /media/IX0712
.oO(mmmmmhhh Soylent Green™...)

lsusb -v lists the USB devices currently attached but not necessarily mounted. Check e.g. for attribute bInterfaceClass 8 Mass Storage. Though, you might find empty memory card readers, iPODs, everything that has a filesystem interface...

pb> lsusb -v 2>/dev/null | \ perl -ne '$dev=$_ if /^Bus/; print $dev if /bInterfaceClass\s+8\D/ +' Bus 002 Device 006: ID 05ac:1301 Apple Computer, Inc. Bus 002 Device 006: ID 05ac:1301 Apple Computer, Inc. Bus 002 Device 005: ID 1307:0163 Bus 002 Device 004: ID 05e3:070e Genesys Logic, Inc.

Use with care.

In reply to Re: Detect Plugged USB Flash Drive / CD in CDROM Drive by Perlbotics
in thread Detect Plugged USB Flash Drive / CD in CDROM Drive by renegadex

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.