27

I've seen some command like

echo '* - nofile 65535' >> /etc/security/limits.conf

I know echo print something on the screen.

and limits.conf was a file in that /etc/security path.

But want does >> do here? it means something like 'to' or 'in'?

Seth
  • 58,122
Zen
  • 683
  • 1
  • 7
  • 17

1 Answers1

44

>> redirects the output of the command on its left hand side to the end of the file on the right-hand side.

So,

echo '* - nofile 65535' >> /etc/security/limits.conf

will append * - nofile 65535 to the end of the /etc/security/limits.conf file, instead of printing * - nofile 65535 on the screen.

If you instead had

echo '* - nofile 65535' > /etc/security/limits.conf

(note the >> replaced by >), everything already present in /etc/security/limits.conf would have been replaced by * - nofile 65535, and not appended.

You may also like to read this question:

jobin
  • 27,708
  • 4
    Perfect, especially the extra '>' point. It helps me avoid possible disaster. – Zen May 25 '14 at 06:11