How can I access each character in a line of a file in Ubuntu?
I'm trying to get every single character of every single line in a given file and then do convertnum() (Assume that the function works perfectly) on each single character. Here is what I have so far: #!/bin/bash file1=$1 while read…