1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-04 15:15:24 +02:00
tldr/pages/common/if.md

12 lines
224 B
Markdown
Raw Normal View History

2016-01-05 20:47:12 +02:00
# if
> Simple shell conditional
- Echo a different thing depending on a command's success.
`{{command}} && echo "success" || echo "failure"`
- Full if syntax.
`if {{condition}}; then echo "true"; else echo "false"; fi`