ฉันจะแยกความแตกต่างระหว่างคำสั่งยูทิลิตี้หรือ builtin สำหรับรับเอกสารได้อย่างไร


9

ฉันใช้งานสคริปต์ของ Bash แต่บางครั้งฉันก็สับสนว่าคำสั่งใดที่ฉันใช้เป็นของใคร บางครั้งใช้man xxxงานได้บางครั้งก็ใช้ไม่ได้ดังนั้นฉันใช้--helpหรือinfoส่วนใหญ่เป็นหนึ่งในงานเหล่านี้เพื่อแสดงคำอธิบายของคำสั่ง ใครสามารถบอกฉันได้ว่าฉันจะรู้ได้อย่างไรว่าคำสั่งใดเป็นของอะไร Bash builtin, GNU ยูทิลิตี้ ฯลฯ

คำตอบ:


6

คุณสามารถใช้typeเพื่อค้นหา:

$ type echo
echo is a shell builtin
$ type sudo
sudo is /usr/bin/sudo

สำหรับ builtins ทุบตีใช้งานเช่นเดียวกับในhelphelp echo


3

บางคำสั่งในตัวจะรวมไว้เพื่อประโยชน์ด้านประสิทธิภาพและมีอยู่เป็นคำสั่งภายนอกตั้งแต่แรก ตัวอย่างเช่น:

$ type -a echo
echo is a shell builtin
echo is /bin/echo

$ type -a printf
printf is a shell builtin
printf is /usr/bin/printf

การวิเคราะห์รายละเอียดของ builtins และคำสั่งภายนอกสามารถพบได้ในระบบปฏิบัติการยูนิกซ์และลินุกซ์


เท่าที่ได้รับความช่วยเหลือสำหรับคำสั่งแบบบิลด์คู่ / ภายนอกเช่นechoคุณมีสองทางเลือก วิธีหนึ่งคือโดยใช้man echo:

ECHO(1)                               User Commands                               ECHO(1)

NAME
       echo - display a line of text

SYNOPSIS
       echo [SHORT-OPTION]... [STRING]...
       echo LONG-OPTION

DESCRIPTION
       Echo the STRING(s) to standard output.

       -n     do not output the trailing newline

       -e     enable interpretation of backslash escapes

       -E     disable interpretation of backslash escapes (default)

       --help display this help and exit

       --version
              output version information and exit

       If -e is in effect, the following sequences are recognized:

       \\     backslash

       \a     alert (BEL)

 Manual page echo(1) line 1 (press h for help or q to quit)

และคุณสามารถพิมพ์:

$ help echo
echo: echo [-neE] [arg ...]
    Write arguments to the standard output.

    Display the ARGs, separated by a single space character and followed by a
    newline, on the standard output.

    Options:
      -n    do not append a newline
      -e    enable interpretation of the following backslash escapes
      -E    explicitly suppress interpretation of backslash escapes

    `echo' interprets the following backslash-escaped characters:
      \a    alert (bell)
      \b    backspace
      \c    suppress further output
      \e    escape character
      \E    escape character
      \f    form feed
      \n    new line
      \r    carriage return
      \t    horizontal tab
      \v    vertical tab
      \\    backslash
      \0nnn the character whose ASCII code is NNN (octal).  NNN can be
        0 to 3 octal digits
      \xHH  the eight-bit character whose value is HH (hexadecimal).  HH
        can be one or two hex digits

    Exit Status:
    Returns success unless a write error occurs.
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.