Horje
bash sequence Code Example
bash sequence
seq FIRST INCREMENT LAST


for i in $(seq 2.5 .1 5);
do
    # Print the value
    echo $i;
done

2.5
2.6
2.7
2.8
.......





Shell

Related
sed excape all quates Code Example sed excape all quates Code Example
raspberry shell get datetime now Code Example raspberry shell get datetime now Code Example
grep search for text in php files recursive Code Example grep search for text in php files recursive Code Example
livewire ErrorException Undefined array key "id" Code Example livewire ErrorException Undefined array key "id" Code Example
how to avoid some files when you making a list Code Example how to avoid some files when you making a list Code Example

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