Linux Gvim Shell for Loop

Source: Internet
Author: User

#for循环
#格式
#for variable in list
#do
# Command1
# Command2
#    ...
#done
A sequence of #列表是一组值 (numbers, strings, etc.), each separated by a space. Once per loop, assign the next value of the list to the variable
#in list is optional, if it is not used, the For loop uses the command-line positional parameters, such as: sequentially outputting the number of the current list

1  for inch 1 2 3 4 5 2  Do 3     Echo "  "4 done

#顺序输出字符串中的字符, the result is a string

1  for inch '  '2do3     echo  ${str}4done 

Files that start with #显示主目录下以. Bash

1  for  in ${home/.bash*}2do3     echo  ${file}4   Done

Linux Gvim Shell for Loop

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.