[Linux] && , || , ;
1. && : 앞의 명령이 성공해야만 뒤의 명령을 수행ex) aaaa && topresult) -bash: net: command not found 2. || : 앞의 명령이 실패하면 뒤의 명령을 수행ex) aaaa || topresult) Processes: 260 total, 2 running, 8 stuck, 250 sleeping, 1353 threads .... 3. ; : 성공 실패와 상관없이 수행ex) a ; b ; c-bash: a: command not found-bash: b: command not found -bash: c: command not found 4. >> : 해당명령을 appendex) $ ls >> t.txtresult)events-snb/ nginx.plist~ noh..
2016. 10. 16. 14:03