changeset 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 98d1fc53b1c4
children 9a0d4e8a9c61
files scripts/minicom.sh
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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