perl에서 이것을 어떻게 해석 해야 하나요

dreamer의 이미지

PERL="Unknown"
path_userperl=`echo $PATH | sed -e 's/:/ /g'`
for perl_path in  $path_userperl ; do
    userperl=$userperl" "$perl_path/perl
    userperl=$userperl" "$perl_path/Perl
done
for perl_path in $userperl $ATRIAHOME/bin/Perl $CLEARCASEHOME/bin/Perl /usr/atria/bin/Perl /opt/rational/clearcase/bin/Perl ../bin/Perl ../../../bin/Perl; do
    if [ -x "$perl_path" ] ; then
        # Found the name, is it good enough for our task?
        TEST_INTERP=`$perl_path -e 'require 5; print "Good" if ($] =~ /5\.00[0-3]/);' 2>&1`
        if [ "$TEST_INTERP" = "Good" ] ; then
            PERL=$perl_path
            break
        fi
    fi
done

install program에서 있는건데,
perl의 버전이 5.0이상인지를 확인 하는 스크립트인데...
Perl 5.6.0에서는 찾아내고 Perl5.8.0에서는 찾지를 못합니다.
무슨 이유가 있나요...
아니면 애초에 다른 문제인가요?
알려주세요
TEST_INTERP=`$perl_path -e 'require 5; print "Good" if ($] =~ /5\.00[0-3]/);' 2>&1`

특히 이부분을 모르겠네요
무한포옹의 이미지

dreamer wrote:

TEST_INTERP=`$perl_path -e 'require 5; print "Good" if ($] =~ /5\.00[0-3]/);' 2>&1`

perl 버젼이 5.000 ~ 5.003 (즉 5.0 ~ 5.3 이상이면 굿이란 얘기죠)

근데 왜 5.006(5.6)에서 나온다고 되어있나요?

이상하네요

$perl -e 'print $]'

해보세요

-------------------------------
== warning 대부분 틀린 얘기입니다 warning ===

cjh의 이미지

5.8의 경우는 $]의 값이 5.008입니다.
위 스크립트는 5.6이든 5.8이든 안되어야 정상인데요.
(5.003까지만 검사하므로)

--
익스펙토 페트로눔

dreamer의 이미지

버전이 5.6.0인 perl

perl -e 'require 5; print "Good$]" if ($] =~ /5\.*/);'

를 찍어보면
Good5.006001
이렇게 나요내요

그리고 버전이 5.8.0인 경우는

perl -e 'require 5; print "Good$]" if ($] =~ /5\.*/);'

Good5.008

이렇게 나옵니다.

상화은 이런데 누가 좀더 이론적으로 설명해주시면 감사하겠습니다.

cjh의 이미지

$]에는 현재 실행한 perl의 버전 번호가 들어갑니다.
이걸 5\.*과 비교하면 5.006001 이나 5.008은
매치가 되겠죠. 그러니 good이 출력되는 것이고,

require 5는 perl이 버전 5보다 낮은 버전이면 그냥 종료하도록 합니다(perl 4등). perl4에는 require가
없으니까 아마 그냥 에러 내겠죠.

--
익스펙토 페트로눔

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.