First page Back Continue Last page Graphics

Tags

sed 's/\([0-9][0-9]*\)/\1\.0/g' \

raw.grades > float.grades

will insert .0 after every string of digits in the raw.grades file.

sed 's/[0-9][0-9]*/&\.0/g' \

raw.grades > float.grades