Explore
Connect
Documentation
Snippets
Log in
Sign up
Computing with Data
elgeish
629.7K 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
Press desired key combination and then press ENTER.
Run
69
Suggested playgrounds
PYTHON: BEGINNER QUIZ (10 Questions)
By
Code-Parser
4,908
245
Simple Python Test
By
Jouj_
2,014
25
9a7ba
By
sheerwood
557
3
Python from Zero to Hero
By
toEpam
12.5K
141
Open Source Your Knowledge: become a Contributor and help others learn.
Create New Content