-- Leo's gemini proxy

-- Connecting to freeshell.de:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini;lang=en-GB

for


> Perform a command several times.

More information.


Execute the given commands for each of the specified items:

for {variable} in {item1 item2 ...}; do {echo "Loop is executed"}; done

Iterate over a given range of numbers:

for {variable} in {{from}..{to}..{step}}; do {echo "Loop is executed"}; done

Iterate over a given list of files:

for {variable} in {path/to/file1 path/to/file2 ...}; do {echo "Loop is executed"}; done

Iterate over a given list of directories:

for {variable} in {path/to/directory1/ path/to/directory2/ ...}; do {echo "Loop is executed"}; done

Perform a given command in every directory:

for {variable} in */; do (cd "${variable}" || continue; {echo "Loop is executed"}) done


> Copyright © 2014—present the tldr-pages team and contributors.

> This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).

CC-BY



-- Response ended

-- Page fetched on Fri May 17 15:05:55 2024