Loop through an array of strings in Bash?

前端 未结 19 3358
情深已故
情深已故 2020-11-22 03:59

I want to write a script that loops through 15 strings (array possibly?) Is that possible?

Something like:

for databaseName in listOfNames
then
  # D         


        
19条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-11-22 04:21

    I loop through an array of my projects for a git pull update:

    #!/bin/sh
    projects="
    web
    ios
    android
    "
    for project in $projects do
        cd  $HOME/develop/$project && git pull
    end
    

提交回复
热议问题