builtin (beépített Bash parancs)

Tartalom

 

Adatok

Licenc: GNU GPLv3+
Verziószám: GNU Bash 5
Fejlesztő/tulajdonos: Free Software Foundation Inc.

Rövid leírás:

A builtin beépített Bash parancs manual oldala és súgója. A parancs végrehajtja a paraméterében megadott Bash beépített parancsot. Ha létezik megegyező nevű külső parancs, a builtin akkor is csak a beépítettet fogja futtatni. A parancs használatával tehát biztosak lehetünk benne, hogy kizárólag csak beépített parancsokat futtatunk.

 

 

Man oldal kimenet

man bash
[...]
       builtin shell-builtin [arguments]
              Execute the specified shell builtin, passing it arguments, and return its exit sta-
              tus.   This  is  useful  when defining a function whose name is the same as a shell
              builtin, retaining the functionality of the builtin within the  function.   The  cd
              builtin   is   commonly  redefined  this  way.   The  return  status  is  false  if
              shell-builtin is not a shell builtin command.
[...]

 

 

Súgó kimenet

builtin --help
builtin: builtin [shell-builtin [arg ...]]
    Execute shell builtins.
    
    Execute SHELL-BUILTIN with arguments ARGs without performing command
    lookup.  This is useful when you wish to reimplement a shell builtin
    as a shell function, but need to execute the builtin within the function.
    
    Exit Status:
    Returns the exit status of SHELL-BUILTIN, or false if SHELL-BUILTIN is
    not a shell builtin.

 

Kapcsolódó tartalom