3

I am using Ubuntu 12.04 and I was doing through a terminal tutorial. There was explained about echo command and he mentioned something about adding your name to the sudoers file using echo >>. I am just wondering what it was? Can anyone tell me how to do it?

Radu Rădeanu
  • 169,590
Jatttt
  • 2,327
  • 12
  • 32
  • 43
  • I went to /bin and typed ls and the first file was bash so i think i should type echo jatin >> bash but i am not sure so just asking? :| – Jatttt Feb 22 '14 at 20:13
  • 1
    Please, don't ever do this! – Braiam Feb 22 '14 at 20:24
  • do not ever try to echo something >> /bin/bash that will break your shell. 2) Do not ever use echo to modify sudoers, use visudo instead. If you found a guide telling you to use echo for this, change guides and ignore anything else it recommends.
  • – terdon Mar 19 '14 at 00:40