In linux, in shell scripting, the [...] construct is often used to take actions on a bunch of files, one at a time.
Answer
for loop
Question
In linux, in shell scripting, the [...] construct is often used to take actions on a bunch of files, one at a time.
Answer
?
Question
In linux, in shell scripting, the [...] construct is often used to take actions on a bunch of files, one at a time.
Answer
for loop
If you want to change selection, open document below and click on "Move attachment"
7. Shell Scripting plied. The same functionality can be achieved with -gt (greater than): N=1 ; until test "$N" -gt "10"; do echo "Number $N"; N=$[N+1] ; done 7.3 Looping to Repeat Commands: the for Statement The <span>for command also allows execution of commands multiple times. It works like this: 5 for i in cows sheep chickens pigs do echo "$i is a farm animal" done echo -e "but\nGNUs are not farm anim
Summary
status
not learned
measured difficulty
37% [default]
last interval [days]
repetition number in this series
0
memorised on
scheduled repetition
scheduled repetition interval
last repetition or drill
Details
No repetitions
Discussion
Do you want to join discussion? Click here to log in or create user.