# HG changeset patch # User David J. MacKenzie # Date 782602078 0 # Node ID 9e5812a795da008e116a94f85c985a41d34482cd # Parent 6c39fe6d958137cb21061d1228a0fe892709f0c3 Use test -r instead of < to check readability, to avoid syntax error. diff -r 6c39fe6d9581 -r 9e5812a795da lib-src/rcs-checkin --- a/lib-src/rcs-checkin Wed Oct 19 19:55:36 1994 +0000 +++ b/lib-src/rcs-checkin Wed Oct 19 21:27:58 1994 +0000 @@ -44,7 +44,7 @@ test -f "$file" || continue # Check that file is readable. - <$file || exit + test -r "$file" || exit # If the RCS file does not already exist, # initialize it with a description from $file's first line.