Report this

What is the reason for this report?

Why Standard Input redirection command comes first?

Posted on February 25, 2022

In the below command which prints a 32 character length key why < command is placed at the beginning?

< /dev/urandom tr -dc A-Za-z0-9 | head -c32



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hello,

The tr command can read directly from stdin. So the two following expressions are more or less going to work in the same way:

< /dev/urandom tr -dc A-Za-z0-9 | head -c32

or

tr -dc A-Za-z0-9 < /dev/urandom  | head -c32

Basically, the redirections can appear anywhere on a simple command.

An alternative approach is to use the cat command which is going to just add an extra step but produce the same result:

cat /dev/urandom | tr -dc A-Za-z0-9 | head -c32

Hope that this helps!

Best,

Bobby

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Start building today

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.