From 7339eb082343df556c27fb0df5dd36a21714284e Mon Sep 17 00:00:00 2001 From: Jeff King Date: Tue, 11 Mar 2008 13:40:45 -0400 Subject: t0021: tr portability fix for Solaris Solaris' /usr/bin/tr doesn't seem to like multiple character ranges in brackets (it simply prints "Bad string"). Instead, let's just enumerate the transformation we want. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano diff --git a/t/t0021-conversion.sh b/t/t0021-conversion.sh index cb86029..8fc39d7 100755 --- a/t/t0021-conversion.sh +++ b/t/t0021-conversion.sh @@ -5,7 +5,9 @@ test_description='blob conversion via gitattributes' . ./test-lib.sh cat <<\EOF >rot13.sh -tr '[a-zA-Z]' '[n-za-mN-ZA-M]' +tr \ + 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' \ + 'nopqrstuvwxyzabcdefghijklmNOPQRSTUVWXYZABCDEFGHIJKLM' EOF chmod +x rot13.sh -- cgit v0.10.2-6-g49f6