💾 Archived View for dmerej.info › en › blog › 0007-dont-use-short-options.gmi captured on 2024-05-12 at 15:12:20. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2022-07-16)

-=-=-=-=-=-=-

2016, Apr 23 - Dimitri Merejkowsky
License: CC By 4.0

This post tries to show you how and when to use long and short options.


What are short options?

Usually, when you are using a program that has a command line interface, options come in two forms: long and short options.

For instance, if you run `ls --help` you'll see something like:

$ ls --help
Usage: ls [OPTION]... [FILE]...
...
  -a, --all                  do not ignore entries starting with .

So you have two ways to list all files in the current directory, even when they start with a dot:

$ ls -a
./  ../  .cache  foo/
$ ls --all
./  ../  .cache  foo/

Question is: when you should you use the short version, and when you should you use the long version?

In documentation

I'm talking about any piece of text that describes a command line to run. It can be in the documentation of your program when you describe how to use it, but also in the wiki documentation of your distribution, and so on...

In my opinion, you should always use long options in these occasions.

Let's take an example from the Arch Linux wiki. The issue is to find out if any of the installed packages have disappeared from AUR (AUR is the Arch Linux User Repository, and sometimes, packages disappeared during the transition from AUR3 to AUR4.)

The solution is to ask `pacman` (Arch Linux package manager) for any "foreign" packages, and query the AUR to see if we have a `200` status code.

for pkg in $(pacman -Qqm); do
     if ! curl -sILfo /dev/null -w '%{http_code}' \
          "https://aur.archlinux.org/packages/$pkg" \
               | grep -q '^2'; then
       echo "$pkg is missing!"
    fi
done

for pkg in $(pacman --query --quiet --foreign); do
    if ! curl --silent --location --fail \
              --output /dev/null \
              --write-out '%{http_code}' \
         "https://aur.archlinux.org/packages/$pkg" \
             | grep --quiet '^2'; then
        echo "$pkg is missing!"
    fi
done

I hope you'll agree that the version with long options is easier to understand.

It does not really matter that the command is longer, people are going to copy/paste the entire block anyway.

In scripts

If you're writing a script that use an external command line program to do the job, you probably always want to use long options too. Here's what it looks like in Python:

cmd = ["rsync", "-rlptc", "--special", "--progress",
             "--exclude=.debug"]
subprocess.call(cmd)

cmd = ["rsync",
    "--recursive",
    "--links",
    "--perms",
    "--times",
    "--specials",
    "--progress", # print a progress bar
    "--checksum", # verify checksum instead
                           # of size and date
    "--exclude=.debug/", # exclude debug symbols
]
subprocess.check_call(cmd)

Note how in the short version we have a string (`rlptc`) that makes absolutely no sense to the reader - unless of course they know the entier man page of `rsync` by heart.

Also note that having one (long) option per line has at least two advantages:

In a command line prompt

I also think you should also use **long** options when typing commands in your shell.

Don't believe me? Let me tell you a story.

For quite a long time I tried to remember `rsync` short options, and I never managed to do it...

Is there a `-v` for verbose? I know there's `-r` for recursive, but is `-p` for progress or for preserving permissions? And how do I itemize changes or use checksums?

So every time I had to use `rsync` I had to open the man page.

Then I tried remembering the long options instead. Guess what? They are **much** easier to remember :)

Recursive is `--recursive`, progress is `--progress`, itemize changes is `--itemize-changes` and checksums is `--checksum`.

If you're worried you're going to spend more time typing commands I've got two answers for you: auto-completion and history.

For instance, in my `zsh` setup:

Conclusion

For command line users

Short options are good for programs you use from the command line, providing:

For anything else, use long options!

For writers of command line programs

Make sure to provide both long and short versions of the options your users are most likely to use.

In Python, you can use argparse[1], docopt[2], or click[3] for this.

1: https://docs.python.org/3/library/argparse.html

2: https://pypi.python.org/pypi/docopt

3: http://click.pocoo.org

But for rarely used options, don't bother finding an obscure shortcut that your users are never going to remember anyway.

----

Back to Index

Contact me