Čo robia vstavané velenie v Bash?

Obsah:

Čo robia vstavané velenie v Bash?
Čo robia vstavané velenie v Bash?

Video: Čo robia vstavané velenie v Bash?

Video: Čo robia vstavané velenie v Bash?
Video: OPS104 Securing SMB from within and without - YouTube 2024, Apríl
Anonim
Vstavané príkazy v Bashi môžu byť veľmi užitočné, ale čo vlastne robia "vstavané"? Dnešný príspevok SuperUser Q & A má odpoveď na otázku zvedavého čitateľa.
Vstavané príkazy v Bashi môžu byť veľmi užitočné, ale čo vlastne robia "vstavané"? Dnešný príspevok SuperUser Q & A má odpoveď na otázku zvedavého čitateľa.

Dnešná relácia otázok a odpovedí sa k nám pridelí zdvorilosťou SuperUser - podskupiny Stack Exchange, skupín webových stránok týkajúcich sa otázok a odpovedí.

Otázka

Čítač SuperUser lfalin chce vedieť, čo vstavaný príkaz v Bash robí:

I know what a builtin command is, but what does builtin itself do? Executing which ls shows me /bin/ls, but executing which builtin returns nothing. man builtin just gives me a list of builtin commands, one of which is builtin. The rest of the man page explains what a builtin command is, but not what builtin itself is. builtin –help tells me builtin: usage: builtin [shell-builtin [arg …], but still not what it does. Is it a part of Bash in a way that other builtin commands are not?

Čo robí vstavaný príkaz v Bash?

Odpoveď

Spozovateľ spoločnosti SuperUser Spiff nám odpovedal:

The builtin command makes sure you run the shell built-in version of the command rather than running another command with the same name.

For example, imagine you defined a shell function named cd to print some extra status every time you change directories, but you messed it up and now you cannot change directories correctly. So now you can type builtin cd ~ to successfully cd back to your home directory without running your broken shell function.

By the way, my copy of the Bash man page has a section called “SHELL BUILTIN COMMANDS”, and it defines the meaning of the builtin command in that section (transcribed below).

Image
Image

Máte niečo doplniť vysvetlenie? Znížte komentáre. Chcete si prečítať viac odpovedí od iných používateľov technológie Stack Exchange? Pozrite sa na celý diskusný príspevok tu.

Odporúča: