Curl Quiet



In curl version 7.22.0 on Ubuntu and 7.24.0 on OSX the solution to not show progress but to show errors is to use both -s ( -silent) and -S ( -show-error) like so: curl -sS temp.html. Innersense Quiet Calm Curl Control shapes and defines curls and smooth’s textured hair, while hydrating the ends to avoid frizz. Use this styling lotion to eliminate frizz and enhance your curls, or smooth hair for a sleek and shiny blowout. Use sparingly—a little goes a long way!

The curl tool lets us fetch a given URL from the command-line. Sometimes we want to save a web file to our own computer. Other times we might pipe it directly into another program. Either way, curl has us covered.

See its documentation here.

This is the basic usage of curl:

That --output flag denotes the filename (some.file) of the downloaded URL (http://some.url)

Let's try it with a basic website address:

Besides the display of a progress indicator (which I explain below), you don't have much indication of what curl actually downloaded. So let's confirm that a file named my.file was actually downloaded.

Curl quiet

Using the ls command will show the contents of the directory:

Which outputs:

And if you use cat to output the contents of my.file, like so:

– you will the HTML that powers http://example.com

I thought Unix was supposed to be quiet?

Let's back up a bit: when you first ran the curl command, you might have seen a quick blip of a progress indicator:

If you remember the Basics of the Unix Philosophy, one of the tenets is:

Rule of Silence: When a program has nothing surprising to say, it should say nothing.

Curl Silent Mode

In the example of curl, the author apparently believes that it's important to tell the user the progress of the download. For a very small file, that status display is not terribly helpful. Let's try it with a bigger file (this is the baby names file from the Social Security Administration) to see how the progress indicator animates:

Quick note: If you're new to the command-line, you're probably used to commands executing every time you hit Enter. In this case, the command is so long (because of the URL) that I broke it down into two lines with the use of the backslash, i.e.

This is solely to make it easier for you to read. As far as the computer cares, it just joins the two lines together as if that backslash weren't there and runs it as one command.

Make curl silent

Curl

The curl progress indicator is a nice affordance, but let's just see if we get curl to act like all of our Unix tools. In curl's documentation of options, there is an option for silence:

-s, --silent

Silent or quiet mode. Don't show progress meter or error messages. Makes Curl mute. It will still output the data you ask for, potentially even to the terminal/stdout unless you redirect it.

Curl Quiet Mode

Try it out:

Repeat and break things

So those are the basics for the curl command. There are many, many more options, but for now, we know how to use curl to do something that is actually quite powerful: fetch a file, anywhere on the Internet, from the simple confines of our command-line.

Curl QuietQuiet

Before we go further, though, let's look at the various ways this simple command can be re-written and, more crucially, screwed up:

Shortened options

As you might have noticed in the --silent documentation, it lists the alternative form of -s. Many options for many tools have a shortened alias. In fact, --output can be shortened to -o

Now watch out: the number of hyphens is not something you can mess up on; the following commands would cause an error or other unexpected behavior: Gm fly by wire gas pedal throttle body.

Also, mind the position of my.file, which can be thought of as the argument to the -ooption. The argumentmust follow after the -o…because curl.

If you instead executed this:

How would curl know that my.file, and not -s is the argument, i.e. what you want to name the content of the downloaded URL?

In fact, you might see that you've created a file named -s…which is not the end of the world, but not something you want to happen unwittingly.

Order of options

By and large (from what I can think of at the top of my head), the order of the options doesn't matter:

In fact, the URL, http://example.com, can be placed anywhere in the mix:

A couple of things to note:

  1. The way that the URL, what you might consider the main argument for the curl command, can be placed anywhere after the command is not the way that all commands have been designed. So it always pays to read the documentation with every new command.
  2. Notice how -s http://example.com doesn't cause a problem. That's because the -s option doesn't take an argument. But try the following:

And you will have a problem.

No options at all

The last thing to consider is what happens when you just curl for a URL with no options (which, after all, should be optional). Before you try it, think about another part of the Unix philosophy:

This is the Unix philosophy: Write programs that do one thing and do it well. Write programs to work together. Write programs to handle text streams, because that is a universal interface.

If you curl without any options except for the URL, the content of the URL (whether it's a webpage, or a binary file, such as an image or a zip file) will be printed out to screen. Try it:

Output:

Even with the small amount of HTML code that makes up the http://example.com webpage, it's too much for human eyes to process (and reading raw HTML wasn't meant for humans).

Standard output and connecting programs

But what if we wanted to send the contents of a web file to another program? Maybe to wc, which is used to count words and lines? Then we can use the powerful Unix feature of pipes. In this example, I'm using curl's silent option so that only the output of wc (and not the progress indicator) is seen. Also, I'm using the -l option for wc to just get the number of lines in the HTML for example.com:

Number of lines in example.com is: 50

Now, you could've also done the same in two lines:

Curl Quiet Stdout

But not only is that less elegant, it also requires creating a new file called temp.file. Now, this is a trivial concern, but someday, you may work with systems and data flows in which temporarily saving a file is not an available luxury (think of massive files).