Horje
bash for i in range Code Example
for i in range bash
#Just use command seq to iterate a range from start to end
END=10
for i in $(seq 1 $END); do echo $i; done
bash for i in range
# Brace Expansion
for i in {1..10}; do echo $i; done
Source: www.gnu.org




Shell

Related
react print Code Example react print Code Example
install react react testing library Code Example install react react testing library Code Example
video player ubuntu Code Example video player ubuntu Code Example
environment variables in systemd Code Example environment variables in systemd Code Example
Fatal error in launcher: Unable to create process using getting this error while installing pip Code Example Fatal error in launcher: Unable to create process using getting this error while installing pip Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11