Beginner coder here :)
Writing in bash. I'm trying to write the numbers -7.5 to 72.5 in increments of 5 into the first column of a text file.
I can use
seq -7.5 5 72.5
to make the sequence of numbers
How should I write that into a text file?
Thanks