Author: pawelz Date: Thu Apr 1 01:01:07 2010 New Revision: 11291 Modified: toys/cvsstats/generate.sh Log: - don't single-quote shell variables
Modified: toys/cvsstats/generate.sh ============================================================================== --- toys/cvsstats/generate.sh (original) +++ toys/cvsstats/generate.sh Thu Apr 1 01:01:07 2010 @@ -1,5 +1,5 @@ #!/bin/sh -if [ '$#' != 2 ]; then +if [ "$#" != 2 ]; then echo "Usage: $0 YYYY MM" exit fi _______________________________________________ pld-cvs-commit mailing list [email protected] http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
