I am super new to Linux and Bash scripting.
Is there a website where I have an overview for all the different flags and operators?
the Bash scripting cheatsheet is missing quite a few.
Thanks in advance!
I am super new to Linux and Bash scripting.
Is there a website where I have an overview for all the different flags and operators?
the Bash scripting cheatsheet is missing quite a few.
Thanks in advance!
Each command has its own set of options, and the documentation will be (should be) on your own system. For example, man ls
to read about the ls
command, and man ps
to read about ps
.
--help
, e.g. ls --help
.
– Hermann
Jan 15 '22 at 13:47
man application_name
or in rare casesinfo application_name
– Artem S. Tashkinov Jan 15 '22 at 14:02