this post was submitted on 23 May 2025
32 points (86.4% liked)
Linux
7409 readers
213 users here now
A community for everything relating to the GNU/Linux operating system
Also check out:
Original icon base courtesy of lewing@isc.tamu.edu and The GIMP
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
doesn't work for me (using fish) and is apparantly only available in bash; would you call that then a command?
at is also not a built-in but an external tool you have to install first; but its an interesting one.
Right, the
^search^replace
is a Bash feature. It is a builtin command, likeecho
orcd
in example. Just because a command is not available to any other shell or if its not an independent program, does not make it not a command (in my opinion).However I agree its a little bit out of place here. A note that its a builtin and not universally available to every shell would have been nice in such a listing.
just for the sake of being pedantic:
echo
is actually a program (just likels
)cd
though is indeed a command. And I agree with your last statement.echo
is a program, but some shells like Bash and zsh also have a built-inecho
. You can runtype echo
to verify that.whelp... i tried to be pedantic and then got schooled. Thanks :D