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

12 lines
225 B
Markdown
Raw Normal View History

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