this post was submitted on 18 Sep 2023
822 points (98.0% liked)

Linux

46794 readers
1047 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 17 points 11 months ago (2 children)

Why when explaining, giving examples of shell command are people so often providing shortened arguments. It makes it all seam like some random letters you have to remeber by heart. Instead of -x just write --extract. If in the end they endup using the tool so often they need to write it fast they'll check the shortcuts.

[–] [email protected] 3 points 11 months ago (3 children)

Does every Linux command have options as words instead of single letters?

[–] [email protected] 7 points 11 months ago (1 children)

Tar is as old as IT, that's why it's syntax is a bit special.

[–] [email protected] 5 points 11 months ago (1 children)

tar -xf is not really special combining short options isn't uncommon.

Where tar is nonstandard is that you can leave out the -, tar xf is actually how POSIX specifies it. And we've kinda come full circle on that one with many modern utilities using a command syntax, you can read tar xf as "tar extract file" just as you can read git pull as, well, "git pull".

If you want to see a standard command with truly non-standard syntax have a look at dd.

[–] [email protected] 1 points 11 months ago* (last edited 11 months ago)

Nono, dash-parameters are new in fancy GNU tar. And POSIX is not old.

[–] [email protected] 6 points 11 months ago* (last edited 11 months ago)

Many do as it's considered good practice, but it's not guaranteed, it just depends on the individual command (program). Usually you can use the --help option to see all the options, so for instance tar --help.

[–] [email protected] 4 points 11 months ago

Most commands will have expanded arguments started with 2 dashes that usually look like '--verbose-name-of-option', they're usually listed in the man page/documentation along with the abbreviated letter version

[–] [email protected] 0 points 11 months ago

They are random letters you have to learn by hard. No one uses the long form. If someone just needs to use it one time they will copy the line from somewhere.