Explore
Connect
Documentation
Snippets
Log in
Sign up
Computing with Data
elgeish
613.2K views
Forking
Fork
GitHub
Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
Create Content
11/300
Bash - Conditional Logic
Previous:
Bash - Loops
Next:
Bash - Aliases
Bash - Conditional Logic
1
2
3
4
5
6
7
8
9
# Example: if-else statements
a=
4
; b=
3
;
if
[ $a -eq $b ] ;
then
echo
1
;
else
echo
0
;
fi
# Example: logical operators
a=
4
; b=
3
; [ $a -eq $b ] && echo
1
|| echo
0
# Example: brace expansion
echo
{b,c}
; echo
a{b,c}d
; echo
a{a..m}d
Enter to Rename, Shift+Enter to Preview
Run
68
3
Suggested playgrounds
PYTHON: BEGINNER QUIZ (10 Questions)
By
Code-Parser
3,369
170
0
PYTHON STRING METHODS: center(), rjust() and ljust().
By
Code-Parser
2,651
57
0
Python from Zero to Hero
By
toEpam
11.4K
128
0
Beginner Python Concepts
By
a-Rye
49.8K
290
4
Open Source Your Knowledge: become a Contributor and help others learn.
Create New Content