diff scripts/minicom.sh @ 208:2f7ca1a1e274

minicom.sh should check for a char device, not a file.
author Rob Landley <rob@landley.net>
date Mon, 17 Dec 2007 17:34:02 -0600
parents bcad24801bc3
children 2428870ce50c
line wrap: on
line diff
--- a/scripts/minicom.sh	Sun Dec 16 18:02:44 2007 -0600
+++ b/scripts/minicom.sh	Mon Dec 17 17:34:02 2007 -0600
@@ -2,7 +2,7 @@
 
 # If you want to use toybox netcat to talk to a serial port, use this.
 
-if [ ! -f "$1" ]
+if [ ! -c "$1" ]
 then
   echo "Usage: minicom.sh /dev/ttyS0"
   exit 1