Explore
Connect
Documentation
Snippets
Log in
Sign up
Computing with Data
elgeish
560K 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
67
3
Suggested playgrounds
Learn Python with 'de Developer'
By
deDeveloper
4,873
47
0
Recueil d'exercices pour apprendre Python au lycée
By
M_C
1458.2K
588
144
"Magic Methods" of Python Classes
By
Nazgrin
1,493
8
0
Les bases de Python pour le lycée
By
smalicet
107.9K
328
36
Open Source Your Knowledge: become a Contributor and help others learn.
Create New Content