Author: glen Date: Thu Mar 26 13:02:04 2009 New Revision: 10250 Modified: rc-scripts/branches/busybox/TODO Log: - [[ fix helper
Modified: rc-scripts/branches/busybox/TODO ============================================================================== --- rc-scripts/branches/busybox/TODO (original) +++ rc-scripts/branches/busybox/TODO Thu Mar 26 13:02:04 2009 @@ -7,6 +7,11 @@ sh: /bin/mawk: unknown operand 2 + fix: + if [[ $foo = "/bin/m*" ]]; then echo yes; fi + -> + case "$foo" in /bin/m*) echo yes;; esac + Important: - don't set any flags automatically; always follow user suggestion (multicast, arp) _______________________________________________ pld-cvs-commit mailing list [email protected] http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit
