bash loop
#!/bin/bash
for (( c=1; c<=5; c++ ))
do
echo "Welcome $c times"
done
while true;
do
#code
doneyears=(2018 2019)
days=(74 274)
for year in "${years[@]}"; do
for day in $(seq -w ${days[0]} ${days[1]}); do
echo $year
echo $day
done
done#!/bin/bash
# A simple bash "for loop" example below...
# This loop will run 5 times, and will echo the number in sequence as it goes.
# Mind the double . between the {}
# Note how the variable is called with the $ prefix, which can be done within the "" quotes!
for i in {1..5}
do
echo "This is loop number $i"
done
# To achieve the same in a single line is also simple
for i in {1..5};do echo "this is loop number $i";done
## Happy coding, my homies! <3for VARIABLE in 1 2 3 4 5 .. N
do
command1
command2
commandN
donewhile [ <some test> ]
do
<commands>
done
Also in C++:
- bash array initialization multiple lines
- ho to install speach recognitoin pyhton
- mysql database drop
- translate lower to upper in unix
- npm install ubuntu 20.04
- linux pptx to pdf
- git log for specific file
- gh login with github
- sharegate powershell exclude file type
- apt clean cache
- reset postgres password windows
- check go is installed mac
- linssid linux mint 20
- yarn clear cache
- java check jre version
- ubuntu boot slow
- how to drive linux 2020 bluetooth on ubuntu
- git reset hard to remote
- install docker-machine-driver-hyperkit
- git commit from terminal
- how to uninstall apps without admin password
- terraform workspace
- nslookup all dns entries
- ubuntu keyboard shortcut to close window