Horje
bash for loop with decimals Code Example
bash for loop with decimals
you cannot do that, bash do not support floting arithmatics.
use bash sequences indead
bash for loos do not start from fractions like 0.5 0.25 .. only support intigers 

for i in $(seq 3.0 0.1 4.5); 
do 
  echo $i; 
done




Shell

Related
create a ew remote tracking branch Code Example create a ew remote tracking branch Code Example
github clone mirror Code Example github clone mirror Code Example
github checkout Code Example github checkout Code Example
grep not multiple patterns Code Example grep not multiple patterns Code Example
install https certificate on dotnet for development Code Example install https certificate on dotnet for development Code Example

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