Shell Scripting Tutorial - Break & Continue Statement

preview_player
Показать описание
and be sure to click that notification bell so you know when new videos are released.

In this video I show you how to use break and continue statements in Bash.

*******Code Used in this video*******
###break statement
i=0

while [[ $i -lt 19 ]]
do
echo "Number: $i"
((i++))
if [[ $i -eq 7 ]]; then
break
fi
done

echo 'All Done!'

###Continue Statement
i=0

while [[ $i -lt 19 ]]; do
((i++))
if [[ "$i" == '2' ]]; then
continue
fi
echo "Number: $i"
done

echo 'All Done!' ₿💰💵💲Help Support the Channel by Donating Crypto💲💵💰₿

Bitcoin
3MMKHXPQrGHEsmdHaAGD59FWhKFGeUsAxV

Ethereum
0xeA4DA3F9BAb091Eb86921CA6E41712438f4E5079

Litecoin
MBfrxLJMuw26hbVi2MjCVDFkkExz8rYvUF

Dash
Xh9PXPEy5RoLJgFDGYCDjrbXdjshMaYerz

Zcash
t1aWtU5SBpxuUWBSwDKy4gTkT2T1ZwtFvrr

Chainlink
0x0f7f21D267d2C9dbae17fd8c20012eFEA3678F14

Bitcoin Cash
qz2st00dtu9e79zrq5wshsgaxsjw299n7c69th8ryp

Etherum Classic
0xeA641e59913960f578ad39A6B4d02051A5556BfC

USD Coin
0x0B045f743A693b225630862a3464B52fefE79FdB
Рекомендации по теме
Комментарии
Автор

Nice colour scheme! Mind sharing your Xresources?

leoliu
Автор

Just to note that the double angle brackets " [[ _expression_ ]] " statements are not POSIX compliant.
It will not work with all shells, however bash, zsh, ksh do support them.

FaintSnow
Автор

Hey, I've been watching and enjoying your videos for a while but I never figured - what compositor do you use and how is it configured?

Peshyy
Автор

For continue, they really could have used terms which made more sense, like skip, jump, etc

davoudarsalani
Автор

Hi dude, love ur vids, I was wondering if could you please do a video about GnetooLTO and Pentoo. I'm pretty new to gentoo and still learning but documentation seems a little bit confusing to me :(

stefanzaharie
Автор

can i get your dwm/status config file?

anytrant
welcome to shbcf.ru