home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / bin / cdrecord < prev    next >
Encoding:
Text File  |  2006-08-17  |  133 b   |  12 lines

  1. #!/bin/sh
  2. VERS=`uname -r`
  3. case "$VERS" in
  4.   2.0.*|2.2.*)
  5.     exec cdrecord.shm "$@"
  6.   ;;
  7.   *)
  8.     exec cdrecord.mmap "$@"
  9.   ;;
  10. esac
  11.  
  12.