1 2 3 4 5 6 7
#!/usr/bin/env sh X=$(sed 's/\("\|\\\)/\\&/g; s/^/../' input \ | tr -d '\n' \ | wc -c) Y=$(tr -d '\n' <input | wc -c) expr $X - $Y