basic

来自「实战Linux编程的原代码,希望对学驱动的人能有所帮助」· 代码 · 共 28 行

TXT
28
字号
#!/bin/sh# -*- perl -*-: ${PERL=perl}: ${srcdir=.}case "$PERL" in  *'missing perl')  echo 1>&2 "$0: configure didn't find a usable version of Perl, so can't run this test"  exit 77  ;;esac# Export this to avoid hassles when run in a UTF-8 locale,# since we use 8-bit characters below, and those values are# interpolated into strings (to perform substitution) in Fetish.pm.LC_ALL=Cexport LC_ALLexec $PERL -w -I$srcdir/.. -MFetish -- - <<\EOFrequire 5.003;use strict;(my $program_name = $0) =~ s|.*/||;my @Tests =    (     ['8-bit-pfx', qw (-p '

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?