Explore
Connect
Documentation
Snippets
Log in
Sign up
Computing with Data
elgeish
510.3K 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
65
3
Suggested playgrounds
Python program(for beginners)
By
debapriya_dutta
9,496
135
5
Beginner Python Concepts
By
a-Rye
29.7K
223
3
Curso Basico de Python
By
mayracmg
862
9
0
Java(Say hello through your code)!
By
debapriya_dutta
3,632
36
3
Open Source Your Knowledge: become a Contributor and help others learn.
Create New Content