Bash for: Difference between revisions
Jump to navigation
Jump to search
Line 76: | Line 76: | ||
<pre> | <pre> | ||
for f in dir/*; do | for f in dir/B*; do | ||
echo ${f} | echo ${f} | ||
done | done | ||
</pre> | </pre> | ||
In case no filename match, the for body is executed with he literal expression ("<tt>dir/*</tt>" in the example above). | If file names match, the replacement closely matches the expression (example "dir/BMW.txt dir/Bentley.txt"). | ||
In case no filename match, the for body is executed with he literal expression ("<tt>dir/B*</tt>" in the example above). |
Revision as of 05:34, 5 March 2016
External
Internal
Overview
The for built-in command expand words, and execute commands once for each member in the resultant list, with i bound to the current member.
for i in words; do commands; done
Alternatively, for:
for i do commands; done
commands executes for each positional parameter (as if in "$@" had been specified.
Yes another alternative form:
for (( i=0; i<${#names[@]}; i++ )); do local name=${names[${i}]} echo "${name}" done
Iterating through $1, $2, $3 ...
for i do echo ${i} done
Iterating through a space separated list
s="a b c" for i in ${s} do echo ${i} done
or
s="a b c" for i in ${s}; do echo ${i}; done
Note the use of ";"
Iterating over Lines in the Same bash Process
IFS="$(printf '\n\r')" for line in $(cat ./file.txt); do echo "${line}" done IFS="$(printf ' \t\n')"
For more details on for and IFS, see IFS.
Iterating over a File List
Use a globbing expression after in and the shell will replace it with the list of files matching the expression:
for f in dir/B*; do echo ${f} done
If file names match, the replacement closely matches the expression (example "dir/BMW.txt dir/Bentley.txt").
In case no filename match, the for body is executed with he literal expression ("dir/B*" in the example above).