Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

loop from array bash

#!/bin/bash
# declare an array called array and define 3 values
array=( one two three )
for i in "${array[@]}"
do
	echo $i
done
Comment

array and for loop bash

myArray=('Apple' 'Banana' 'Orange')
for i in "${myArray[@]}";
do
  echo $i
done
Comment

loop over array of strings bash

## declare an array variable
declare -a arr=("element1" "element2" "element3")

## now loop through the above array
for i in "${arr[@]}"
do
   echo "$i"
   # or do whatever with individual element of the array
done

# You can access them using echo "${arr[0]}", "${arr[1]}" also
Comment

bash for loop string array

## declare an array variable
declare -a arr=("element1" "element2" "element3")

## now loop through the above array
for i in "${arr[@]}"
do
   echo "$i"
   # or do whatever with individual element of the array
done
Comment

Loop through an array of strings in Bash

## declare an array variable
declare -a arr=("element1" "element2" "element3")

## now loop through the above array
for i in "${arr[@]}"
do
   echo "$i"
   # or do whatever with individual element of the array
done

# You can access them using echo "${arr[0]}", "${arr[1]}" also
Comment

Bash script Array + For loop

month=("JAN" "FEB" "MAR" "APR" "MAY" "JUN")

for i in ${month[@]}
do
        echo -e "Month name is: c"
        echo "$i"
done
        echo
        echo -e "Total Month are: c"
        echo "${#month[@]}"
        echo
Comment

bash array and for loop

ss="abcdefghi"
my_array=( `echo $ss | grep -o . ` )

### without for loop ###########
declare -a NewArray=("${my_array[@]}")
echo ${NewArray[@]}

########### using for loop #################
for i in "${my_array[@]}"
do
     new_array+=($i)
done

for i in "${new_array[@]}"
do
	echo $i
done





Comment

Bash script using input to iterate through array

echo -e "Enter value between 0-5: c"
read -r readusr

month=("JAN" "FEB" "MAR" "APR" "MAY" "JUN")

echo -e "User chosen month is: c"
echo ${month[$readusr]}

echo -e "All months are: c"
echo ${month[@]}

echo -e "Numbers of months are: c"
echo ${#month[@]}
Comment

PREVIOUS NEXT
Code Example
Shell :: open xampp in ubuntu 
Shell :: microsoft excel free download for ubuntu 
Shell :: how to delete particular type file recursively in linux 
Shell :: vuforia git url 
Shell :: check python running process linux 
Shell :: universal command to get operating system 
Shell :: kill port 3000 ubuntu 
Shell :: how to merge git branch to master 
Shell :: git credential manager 
Shell :: vscode kali linux 
Shell :: install ftp on ubuntu 
Shell :: rails g migration add columns 
Shell :: Forgot the password I entered during postgres installation 
Shell :: pipenv install flask 
Shell :: gitlab remove branch 
Shell :: change password arch linux 
Shell :: change remote to use ssh git command 
Shell :: uvicorn ERROR: [Errno 98] Address already in use 
Shell :: remove a file from git commit 
Shell :: ping: socket: Operation not permitted 
Shell :: find home dir for user 
Shell :: install eclipse in fedora 
Shell :: batch script if statement 
Shell :: composer upgrade to 2 
Shell :: git abort conflict stash 
Shell :: navigate to folder on mac 
Shell :: how to download a file with curl 
Shell :: install nginx in amazon linux 2 
Shell :: install apache2 linux 
Shell :: yum install tesseract-ocr 
ADD CONTENT
Topic
Content
Source link
Name
3+2 =