Skip to content

Instantly share code, notes, and snippets.

@KenjiOhtsuka
Created March 11, 2023 20:10
Show Gist options
  • Save KenjiOhtsuka/bde40cec1cd2fe605ac61d7a4c4c1b26 to your computer and use it in GitHub Desktop.
Save KenjiOhtsuka/bde40cec1cd2fe605ac61d7a4c4c1b26 to your computer and use it in GitHub Desktop.
Processs each character in a file
#!bin/bash
while IFS= read -r line
do
for i in $(seq 0 $(expr length "$line"))
do
# print each character
c="${line:$i:1}"
echo -n c
done
done < input.txt
with open('input.txt') as f:
for line in f:
for c in line:
# print each character
print(c)
print("\n")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment