This is a sample code:
var1 = float(input('Enter time interval: '))
print(f'OK, time interval is {var1}')
# doing something with above variable
I want to run this python
file like this without changing the code if possible:
python file.py 0<'15'
But I get this error:
-bash: 15: No such file or directory