diff options
| -rw-r--r-- | Makefile | 4 | ||||
| -rw-r--r-- | aclocal.m4 | 2 | ||||
| -rw-r--r-- | elf/Makefile | 2 | ||||
| -rwxr-xr-x | elf/tst-rtld-list-tunables.sh | 2 | ||||
| -rw-r--r-- | iconvdata/big5.c | 30 | ||||
| -rw-r--r-- | iconvdata/cns11643.c | 26 | ||||
| -rw-r--r-- | iconvdata/cns11643l1.c | 46 | ||||
| -rw-r--r-- | iconvdata/gb2312.c | 34 | ||||
| -rw-r--r-- | iconvdata/gbk.c | 24 | ||||
| -rw-r--r-- | iconvdata/jis0208.c | 14 | ||||
| -rw-r--r-- | iconvdata/jis0212.c | 8 | ||||
| -rw-r--r-- | iconvdata/ksc5601.c | 12 | ||||
| -rw-r--r-- | iconvdata/sjis.c | 14 | ||||
| -rw-r--r-- | iconvdata/uhc.c | 4 | ||||
| -rw-r--r-- | io/ftwtest-sh | 2 | ||||
| -rw-r--r-- | manual/libc-texinfo.sh | 2 | ||||
| -rw-r--r-- | po/Makefile | 4 | ||||
| -rwxr-xr-x | scripts/check-c++-types.sh | 4 | ||||
| -rw-r--r-- | scripts/documented.sh | 4 | ||||
| -rw-r--r-- | sysdeps/arm/configure | 2 | ||||
| -rw-r--r-- | sysdeps/arm/configure.ac | 2 | ||||
| -rw-r--r-- | sysdeps/i386/configure | 2 | ||||
| -rwxr-xr-x | sysdeps/i386/tst-ld-sse-use.sh | 6 | ||||
| -rw-r--r-- | sysdeps/ia64/fpu/import_check | 4 |
24 files changed, 127 insertions, 127 deletions
@@ -565,10 +565,10 @@ $(objpfx)check-wrapper-headers.out: scripts/check-wrapper-headers.py $(headers) endif # $(headers) define summarize-tests -@egrep -v '^(PASS|XFAIL):' $(objpfx)$1 || true +@grep -E -v '^(PASS|XFAIL):' $(objpfx)$1 || true @echo "Summary of test results$2:" @sed 's/:.*//' < $(objpfx)$1 | sort | uniq -c -@! egrep -q -v '^(X?PASS|XFAIL|UNSUPPORTED):' $(objpfx)$1 +@! grep -E -q -v '^(X?PASS|XFAIL|UNSUPPORTED):' $(objpfx)$1 endef # The intention here is to do ONE install of our build into the diff --git a/aclocal.m4 b/aclocal.m4 index 3e0bcdd12b..3b4df4a371 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -280,7 +280,7 @@ int _start (void) { $2 return 0; } EOF if ! AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS $no_ssp $3 -nostdlib -nostartfiles - -S conftest.c -o - | fgrep "$1" + -S conftest.c -o - | grep -F "$1" 1>&AS_MESSAGE_LOG_FD]) then libc_compiler_builtin_inlined=yes diff --git a/elf/Makefile b/elf/Makefile index bfc9179fc5..2b646a91e0 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -1315,7 +1315,7 @@ $(objpfx)librtld.mk: $(objpfx)librtld.map Makefile while read lib file; do \ case $$lib in \ libc_pic.a) \ - LC_ALL=C fgrep -l /$$file \ + LC_ALL=C grep -F -l /$$file \ $(common-objpfx)stamp.os $(common-objpfx)*/stamp.os | \ LC_ALL=C \ sed 's@^$(common-objpfx)\([^/]*\)/stamp\.os$$@rtld-\1'" +=$$file@"\ diff --git a/elf/tst-rtld-list-tunables.sh b/elf/tst-rtld-list-tunables.sh index 70875bb5ab..52a3464c32 100755 --- a/elf/tst-rtld-list-tunables.sh +++ b/elf/tst-rtld-list-tunables.sh @@ -41,5 +41,5 @@ ${test_wrapper_env} \ ${run_program_env} \ $rtld --list-tunables \ | sort -u \ -| egrep "(rtld|malloc)" \ +| grep -E "(rtld|malloc)" \ | sed -e "s/0xf\+/0x[f]+/" diff --git a/iconvdata/big5.c b/iconvdata/big5.c index 68c88cd78f..f469d41530 100644 --- a/iconvdata/big5.c +++ b/iconvdata/big5.c @@ -27,7 +27,7 @@ /* Table for Big5 to UCS conversion. This is generated from the BIG5 charmap, using the following command: - egrep "/x../x.." BIG5 | egrep -v "^% " | sed 's/%IRREVERSIBLE%//' | \ + grep -E "/x../x.." BIG5 | grep -E -v "^% " | sed 's/%IRREVERSIBLE%//' | \ perl segA.pl > segA where segA.pl script is: @@ -3600,45 +3600,45 @@ static const char from_ucs4_tab1[256][2] = --------------------------------------------------------------------- rm -f segB2 -egrep "/x../x.." BIG5 | egrep -v "^%" | egrep "^<U02" | sort | \ +grep -E "/x../x.." BIG5 | grep -E -v "^%" | grep -E "^<U02" | sort | \ perl segB2.pl 2 0x02C7 0x02D9 >> segB2 -egrep "/x../x.." BIG5 | egrep -v "^%" | egrep "^<U03" | sort | \ +grep -E "/x../x.." BIG5 | grep -E -v "^%" | grep -E "^<U03" | sort | \ perl segB2.pl 3 0x0391 0x03C9 >> segB2 -egrep "/x../x.." BIG5 | egrep -v "^%" | egrep "^<U20[1-3]" | sort | \ +grep -E "/x../x.." BIG5 | grep -E -v "^%" | grep -E "^<U20[1-3]" | sort | \ perl segB2.pl 4 0x2013 0x203B >> segB2 ( Separate U20AC, U2103, U2105, U2109 ) -egrep "/x../x.." BIG5 | egrep -v "^%" | egrep "^<U216" | sort | \ +grep -E "/x../x.." BIG5 | grep -E -v "^%" | grep -E "^<U216" | sort | \ perl segB2.pl 5 0x2160 0x2169 >> segB2 -egrep "/x../x.." BIG5 | egrep -v "^%" | egrep "^<U219" | sort | \ +grep -E "/x../x.." BIG5 | grep -E -v "^%" | grep -E "^<U219" | sort | \ perl segB2.pl 6 0x2190 0x2199 >> segB2 -egrep "/x../x.." BIG5 | egrep -v "^%" | egrep "^<U22[1-6]" | sort | \ +grep -E "/x../x.." BIG5 | grep -E -v "^%" | grep -E "^<U22[1-6]" | sort | \ perl segB2.pl 7 0x2215 0x2267 >> segB2 ( Separate U2295, U2299, U22A5, U22BF ) -egrep "/x../x.." BIG5 | egrep -v "^%" | egrep "^<U2[56]" | sort | \ +grep -E "/x../x.." BIG5 | grep -E -v "^%" | grep -E "^<U2[56]" | sort | \ perl segB2.pl 8 0x2500 0x2642 >> segB2 -egrep "/x../x.." BIG5 | egrep -v "^%" | egrep "^<U30" | sort | \ +grep -E "/x../x.." BIG5 | grep -E -v "^%" | grep -E "^<U30" | sort | \ perl segB2.pl 9 0x3000 0x3029 >> segB2 -egrep "/x../x.." BIG5 | egrep -v "^%" | egrep "^<U31" | sort | \ +grep -E "/x../x.." BIG5 | grep -E -v "^%" | grep -E "^<U31" | sort | \ perl segB2.pl 10 0x3105 0x3129 >> segB2 ( Separate U32A3 ) -egrep "/x../x.." BIG5 | egrep -v "^%" | egrep "^<U33" | sort | \ +grep -E "/x../x.." BIG5 | grep -E -v "^%" | grep -E "^<U33" | sort | \ perl segB2.pl 11 0x338E 0x33D5 >> segB2 -egrep "/x../x.." BIG5 | egrep -v "^%" | egrep "^<U[4-9]" | sort | \ +grep -E "/x../x.." BIG5 | grep -E -v "^%" | grep -E "^<U[4-9]" | sort | \ perl segB2.pl 12 0x4E00 0x9FA4 >> segB2 -egrep "/x../x.." BIG5 | egrep -v "^%" | egrep "^<UF[678]" | sort | \ +grep -E "/x../x.." BIG5 | grep -E -v "^%" | grep -E "^<UF[678]" | sort | \ perl segB2.pl 13 0xF6B1 0xF848 >> segB2 ( Separate UFA0C, UFA0D ) -egrep "/x../x.." BIG5 | egrep -v "^%" | egrep "^<UFE" | sort | \ +grep -E "/x../x.." BIG5 | grep -E -v "^%" | grep -E "^<UFE" | sort | \ perl segB2.pl 14 0xFE30 0xFE6B >> segB2 -egrep "/x../x.." BIG5 | egrep -v "^%" | egrep "^<UFF" | sort | \ +grep -E "/x../x.." BIG5 | grep -E -v "^%" | grep -E "^<UFF" | sort | \ perl segB2.pl 15 0xFF01 0xFFE5 >> segB2 --------------------------------------------------------------------- diff --git a/iconvdata/cns11643.c b/iconvdata/cns11643.c index 8425b449ae..5c41a4ab0a 100644 --- a/iconvdata/cns11643.c +++ b/iconvdata/cns11643.c @@ -38,7 +38,7 @@ The table can be generated using - egrep '^0x2' CNS11643.TXT | + grep -E '^0x2' CNS11643.TXT | awk '{print $1, $2}' | perl tab.pl where tab.pl is: @@ -1979,7 +1979,7 @@ const uint16_t __cns11643l2_to_ucs4_tab[] = The table can be generated using - egrep '^0x3' CNS11643.TXT | + grep -E '^0x3' CNS11643.TXT | awk '{print $1, $2}' | perl tab.pl where tab.pl is: @@ -3606,7 +3606,7 @@ const uint32_t __cns11643l3_to_ucs4_tab[] = The table can be generated using - egrep '^0x4' CNS11643.TXT | + grep -E '^0x4' CNS11643.TXT | awk '{print $1, $2}' | perl tab.pl where tab.pl is: @@ -5456,7 +5456,7 @@ const uint32_t __cns11643l4_to_ucs4_tab[] = The table can be generated using - egrep '^0x5' CNS11643.TXT | + grep -E '^0x5' CNS11643.TXT | awk '{print $1, $2}' | perl tab.pl where tab.pl is: @@ -7635,7 +7635,7 @@ const uint32_t __cns11643l5_to_ucs4_tab[] = The table can be generated using - egrep '^0x6' CNS11643.TXT | + grep -E '^0x6' CNS11643.TXT | awk '{print $1, $2}' | perl tab.pl where tab.pl is: @@ -9260,7 +9260,7 @@ const uint32_t __cns11643l6_to_ucs4_tab[] = The table can be generated using - egrep '^0x7' CNS11643.TXT | + grep -E '^0x7' CNS11643.TXT | awk '{print $1, $2}' | perl tab.pl where tab.pl is: @@ -10923,7 +10923,7 @@ const uint32_t __cns11643l7_to_ucs4_tab[] = The table can be generated using - egrep '^0xF' CNS11643.TXT | + grep -E '^0xF' CNS11643.TXT | awk '{print $1, $2}' | perl tab.pl where tab.pl is: @@ -12633,8 +12633,8 @@ const uint32_t __cns11643l15_to_ucs4_tab[] = CJK Ideographs in the UCS plane 0: range U+3400..U+9FA5. The table can be created using - egrep '^0x' CNS11643.TXT | - awk '{ print $2, $1 }' | sort | egrep '^0x(3[4-9A-F]|[4-9])' | perl tab.pl + grep -E '^0x' CNS11643.TXT | + awk '{ print $2, $1 }' | sort | grep -E '^0x(3[4-9A-F]|[4-9])' | perl tab.pl where tab.pl is @@ -24796,8 +24796,8 @@ const char __cns11643_from_ucs4p0_tab[][3] = /* CJK Ideographs in the UCS plane 2: range U+20000..U+2A6D6. The table can be created using - egrep '^0x' CNS11643.TXT | - awk '{ print $2, $1 }' | sort | egrep '^0x2[0-9A]... ' | perl tab.pl + grep -E '^0x' CNS11643.TXT | + awk '{ print $2, $1 }' | sort | grep -E '^0x2[0-9A]... ' | perl tab.pl where tab.pl is @@ -39911,8 +39911,8 @@ const char __cns11643_from_ucs4p2_tab[][3] = /* CJK Compatibility Ideographs in the UCS plane 2: range U+2F800..U+2FA1D. The table can be created using - egrep '^0x' CNS11643.TXT | - awk '{ print $2, $1 }' | sort | egrep '^0x2F... ' | perl tab.pl + grep -E '^0x' CNS11643.TXT | + awk '{ print $2, $1 }' | sort | grep -E '^0x2F... ' | perl tab.pl where tab.pl is diff --git a/iconvdata/cns11643l1.c b/iconvdata/cns11643l1.c index 839cc84f72..96bd962ecc 100644 --- a/iconvdata/cns11643l1.c +++ b/iconvdata/cns11643l1.c @@ -32,7 +32,7 @@ The table can be generated using - egrep '^0x1' CNS11643.TXT | + grep -E '^0x1' CNS11643.TXT | awk '{print $1, $2}' | perl tab.pl where tab.pl is: @@ -1540,8 +1540,8 @@ const char __cns11643l1_from_ucs4_tab2[][2] = /* Greek alphabet. The table can be created using - egrep '^0x1' CNS11643.TXT | - awk '{ print $2, $1 }' | sort | egrep '^0x03' | perl tab.pl + grep -E '^0x1' CNS11643.TXT | + awk '{ print $2, $1 }' | sort | grep -E '^0x03' | perl tab.pl where tab.pl is @@ -1581,8 +1581,8 @@ const char __cns11643l1_from_ucs4_tab3[][2] = /* General punctuation. The table can be created using - egrep '^0x1' CNS11643.TXT | - awk '{ print $2, $1 }' | sort | egrep '^0x20' | perl tab.pl + grep -E '^0x1' CNS11643.TXT | + awk '{ print $2, $1 }' | sort | grep -E '^0x20' | perl tab.pl where tab.pl is @@ -1619,8 +1619,8 @@ const char __cns11643l1_from_ucs4_tab5[][2] = /* Mathematical operators. The table can be created using - egrep '^0x1' CNS11643.TXT | - awk '{ print $2, $1 }' | sort | egrep '^0x22[1-6]' | perl tab.pl + grep -E '^0x1' CNS11643.TXT | + awk '{ print $2, $1 }' | sort | grep -E '^0x22[1-6]' | perl tab.pl where tab.pl is @@ -1650,8 +1650,8 @@ const char __cns11643l1_from_ucs4_tab6[][2] = /* Graphic pictures for control codes. The table can be created using - egrep '^0x1' CNS11643.TXT | - awk '{ print $2, $1 }' | sort | egrep '^0x24[0-2]' | perl tab.pl + grep -E '^0x1' CNS11643.TXT | + awk '{ print $2, $1 }' | sort | grep -E '^0x24[0-2]' | perl tab.pl where tab.pl is @@ -1686,8 +1686,8 @@ const char __cns11643l1_from_ucs4_tab7[][2] = /* Circled and Parenthesized numbers. The table can be created using - egrep '^0x1' CNS11643.TXT | - awk '{ print $2, $1 }' | sort | egrep '^0x24[67]' | perl tab.pl + grep -E '^0x1' CNS11643.TXT | + awk '{ print $2, $1 }' | sort | grep -E '^0x24[67]' | perl tab.pl where tab.pl is @@ -1718,8 +1718,8 @@ const char __cns11643l1_from_ucs4_tab8[][2] = /* Circled and Parenthesized numbers. The table can be created using - egrep '^0x1' CNS11643.TXT | - awk '{ print $2, $1 }' | sort | egrep '^0x2[56]' | perl tab.pl + grep -E '^0x1' CNS11643.TXT | + awk '{ print $2, $1 }' | sort | grep -E '^0x2[56]' | perl tab.pl where tab.pl is @@ -1763,8 +1763,8 @@ const char __cns11643l1_from_ucs4_tab9[][2] = /* CJK punctuation and Hangzhou-style numerals. The table can be created using - egrep '^0x1' CNS11643.TXT | - awk '{ print $2, $1 }' | sort | egrep '^0x30[0-2]' | perl tab.pl + grep -E '^0x1' CNS11643.TXT | + awk '{ print $2, $1 }' | sort | grep -E '^0x30[0-2]' | perl tab.pl where tab.pl is @@ -1798,8 +1798,8 @@ const char __cns11643l1_from_ucs4_tab10[][2] = /* Squared latin abbreviations. The table can be created using - egrep '^0x1' CNS11643.TXT | - awk '{ print $2, $1 }' | sort | egrep '^0x33' | perl tab.pl + grep -E '^0x1' CNS11643.TXT | + awk '{ print $2, $1 }' | sort | grep -E '^0x33' | perl tab.pl where tab.pl is @@ -1827,8 +1827,8 @@ const char __cns11643l1_from_ucs4_tab11[][2] = /* CJK Ideographs. The table can be created using - egrep '^0x1' CNS11643.TXT | - awk '{ print $2, $1 }' | sort | egrep '^0x[4-9]' | perl tab.pl + grep -E '^0x1' CNS11643.TXT | + awk '{ print $2, $1 }' | sort | grep -E '^0x[4-9]' | perl tab.pl where tab.pl is @@ -3657,8 +3657,8 @@ const char __cns11643l1_from_ucs4_tab12[][2] = /* Glyphs for vertical variants. The table can be created using - egrep '^0x' CNS11643.TXT | - awk '{ print $2, $1 }' | sort | egrep '^0xFE' | perl tab.pl + grep -E '^0x' CNS11643.TXT | + awk '{ print $2, $1 }' | sort | grep -E '^0xFE' | perl tab.pl where tab.pl is @@ -3699,8 +3699,8 @@ const char __cns11643l1_from_ucs4_tab13[][2] = /* Fullwidth ASCII variants. The table can be created using - egrep '^0x' CNS11643.TXT | - awk '{ print $2, $1 }' | sort | egrep '^0xFF[0-5]' | perl tab.pl + grep -E '^0x' CNS11643.TXT | + awk '{ print $2, $1 }' | sort | grep -E '^0xFF[0-5]' | perl tab.pl where tab.pl is diff --git a/iconvdata/gb2312.c b/iconvdata/gb2312.c index 3bab2268a4..760040a799 100644 --- a/iconvdata/gb2312.c +++ b/iconvdata/gb2312.c @@ -20,7 +20,7 @@ /* The conversion table to UCS4 has almost no holes. It can be generated with: - egrep '^0x' /mnt/cdrom/unix/mappings/eastasia/gb/gb2312.txt | + grep -E '^0x' /mnt/cdrom/unix/mappings/eastasia/gb/gb2312.txt | perl tab.pl where tab.pl is: @@ -1918,8 +1918,8 @@ const char __gb2312_from_ucs4_tab1[][2] = /* The table can be created using - egrep '^0x' /mnt/cdrom/unix/mappings/eastasia/gb/gb2312.txt | - awk '{ print $2, $1 }' | sort | egrep '^0x03' | perl tab.pl + grep -E '^0x' /mnt/cdrom/unix/mappings/eastasia/gb/gb2312.txt | + awk '{ print $2, $1 }' | sort | grep -E '^0x03' | perl tab.pl where tab.pl is @@ -1959,8 +1959,8 @@ const char __gb2312_from_ucs4_tab2[][2] = /* The table can be created using - egrep '^0x' /mnt/cdrom/unix/mappings/eastasia/gb/gb2312.txt | - awk '{ print $2, $1 }' | sort | egrep '^0x04' | perl tab.pl + grep -E '^0x' /mnt/cdrom/unix/mappings/eastasia/gb/gb2312.txt | + awk '{ print $2, $1 }' | sort | grep -E '^0x04' | perl tab.pl where tab.pl is @@ -2006,8 +2006,8 @@ const char __gb2312_from_ucs4_tab3[][2] = /* The table can be created using - egrep '^0x' /mnt/cdrom/unix/mappings/eastasia/gb/gb2312.txt | - awk '{ print $2, $1 }' | sort | egrep '^0x20' | perl tab.pl + grep -E '^0x' /mnt/cdrom/unix/mappings/eastasia/gb/gb2312.txt | + awk '{ print $2, $1 }' | sort | grep -E '^0x20' | perl tab.pl where tab.pl is @@ -2035,8 +2035,8 @@ const char __gb2312_from_ucs4_tab4[][2] = /* The table can be created using - egrep '^0x' /mnt/cdrom/unix/mappings/eastasia/gb/gb2312.txt | - awk '{ print $2, $1 }' | sort | egrep '^0x2[12]' | perl tab.pl + grep -E '^0x' /mnt/cdrom/unix/mappings/eastasia/gb/gb2312.txt | + awk '{ print $2, $1 }' | sort | grep -E '^0x2[12]' | perl tab.pl where tab.pl is @@ -2076,8 +2076,8 @@ const char __gb2312_from_ucs4_tab5[][2] = /* The table can be created using - egrep '^0x' /mnt/cdrom/unix/mappings/eastasia/gb/gb2312.txt | - awk '{ print $2, $1 }' | sort | egrep '^0x24' | perl tab.pl + grep -E '^0x' /mnt/cdrom/unix/mappings/eastasia/gb/gb2312.txt | + awk '{ print $2, $1 }' | sort | grep -E '^0x24' | perl tab.pl where tab.pl is @@ -2118,8 +2118,8 @@ const char __gb2312_from_ucs4_tab6[][2] = /* The table can be created using - egrep '^0x' /mnt/cdrom/unix/mappings/eastasia/gb/gb2312.txt | - awk '{ print $2, $1 }' | sort | egrep '^0x3[01]' | perl tab.pl + grep -E '^0x' /mnt/cdrom/unix/mappings/eastasia/gb/gb2312.txt | + awk '{ print $2, $1 }' | sort | grep -E '^0x3[01]' | perl tab.pl where tab.pl is @@ -2219,8 +2219,8 @@ const char __gb2312_from_ucs4_tab7[][2] = /* The table can be created using - egrep '^0x' /mnt/cdrom/unix/mappings/eastasia/gb/gb2312.txt | - awk '{ print $2, $1 }' | sort | egrep '^0x[4-9]' | perl tab.pl + grep -E '^0x' /mnt/cdrom/unix/mappings/eastasia/gb/gb2312.txt | + awk '{ print $2, $1 }' | sort | grep -E '^0x[4-9]' | perl tab.pl where tab.pl is @@ -4499,8 +4499,8 @@ const char __gb2312_from_ucs4_tab8[][2] = /* The table can be created using - egrep '^0x' /mnt/cdrom/unix/mappings/eastasia/gb/gb2312.txt | - awk '{ print $2, $1 }' | sort | egrep '^0xFF[0-5]' | perl tab.pl + grep -E '^0x' /mnt/cdrom/unix/mappings/eastasia/gb/gb2312.txt | + awk '{ print $2, $1 }' | sort | grep -E '^0xFF[0-5]' | perl tab.pl where tab.pl is diff --git a/iconvdata/gbk.c b/iconvdata/gbk.c index 97717181f4..53e865e74a 100644 --- a/iconvdata/gbk.c +++ b/iconvdata/gbk.c @@ -5543,7 +5543,7 @@ static const uint16_t __gbk_to_ucs[] = /* The table can be created using - awk '{ print $2, $1 }' gbk.txt | sort | egrep '^0x00' | perl tab.pl + awk '{ print $2, $1 }' gbk.txt | sort | grep -E '^0x00' | perl tab.pl where tab.pl is @@ -5574,7 +5574,7 @@ static const char __gbk_from_ucs4_tab1[][2] = /* The table can be created using - awk '{ print $2, $1 }' gbk.txt | sort | egrep '^0x03' | perl tab.pl + awk '{ print $2, $1 }' gbk.txt | sort | grep -E '^0x03' | perl tab.pl where tab.pl is @@ -5614,7 +5614,7 @@ static const char __gbk_from_ucs4_tab2[][2] = /* The table can be created using - awk '{ print $2, $1 }' gbk.txt | sort | egrep '^0x04' | perl tab.pl + awk '{ print $2, $1 }' gbk.txt | sort | grep -E '^0x04' | perl tab.pl where tab.pl is @@ -5660,7 +5660,7 @@ static const char __gbk_from_ucs4_tab3[][2] = /* The table can be created using - awk '{ print $2, $1 }' gbk.txt | sort | egrep '^0x20' | perl tab.pl + awk '{ print $2, $1 }' gbk.txt | sort | grep -E '^0x20' | perl tab.pl where tab.pl is @@ -5690,7 +5690,7 @@ static const char __gbk_from_ucs4_tab4[][2] = /* The table can be created using - awk '{ print $2, $1 }' gbk.txt | sort | egrep '^0x2[12]' | perl tab.pl + awk '{ print $2, $1 }' gbk.txt | sort | grep -E '^0x2[12]' | perl tab.pl where tab.pl is @@ -5738,7 +5738,7 @@ static const char __gbk_from_ucs4_tab5[][2] = /* The table can be created using - awk '{ print $2, $1 }' gbk.txt | sort | egrep '^0x2[4-6]' | perl tab.pl + awk '{ print $2, $1 }' gbk.txt | sort | grep -E '^0x2[4-6]' | perl tab.pl where tab.pl is @@ -5829,7 +5829,7 @@ static const char __gbk_from_ucs4_tab6[][2] = /* The table can be created using - awk '{ print $2, $1 }' gbk.txt | sort | egrep '^0x3[0-3]' | perl tab.pl + awk '{ print $2, $1 }' gbk.txt | sort | grep -E '^0x3[0-3]' | perl tab.pl where tab.pl is @@ -5943,7 +5943,7 @@ static const char __gbk_from_ucs4_tab7[][2] = /* The table can be created using - awk '{ print $2, $1 }' gbk.txt | sort | egrep '^0x[4-9]' | perl tab.pl + awk '{ print $2, $1 }' gbk.txt | sort | grep -E '^0x[4-9]' | perl tab.pl where tab.pl is @@ -12935,7 +12935,7 @@ static const char __gbk_from_ucs4_tab8[][2] = /* The table can b |
