Bash script Array introduction
-
හරි මම ඔයාලට දැන් කියලා දෙනනෙ Bash script වල Array use කරන විදිය
මේ link වලින් ගිහින් ඔයාලට bash script ගැන කලින් කරපු post බලාගන්න පුලුවන්..
Lets talk about bash script - https://lankadevelopers.com/topic/371/lets-talk-about-bash-scriptFirst bash script - https://lankadevelopers.com/topic/372/first-bash-script
Sum of two numbers in bash script - https://lankadevelopers.com/topic/377/sum-of-two-numbers-in-bash-script
#!/bin/bash fruits=(apple orange graphes banana) echo "${fruits[2]}" #print element 2 echo "${fruits[@]}" #print all array elements echo "${!fruits[@]}" #print array position echo "${#fruits[@]}" #calculate array size fruits[1]=lemon #overwrite 1st element echo "${fruits[@]}" fruits+=(orange) #add more value (අපිට පුලුවන් මේකෙන් array එකේ element වැඩි කරන්න) echo "${fruits[@]}" #print all array elements echo "${!fruits[@]}" #print array position
-
thanks bro..
-
bro can you link all bash posts together
-
@root Its good idea brother, thank you..
-
@dev_lak Thank you...