1 2 3 4 5 6 7
#!/bin/sh X=$(tr -d '\n' <input | wc -c) Y=$(sed 's/\(^"\|"$\)//g; s/\\x[a-f0-9]\{2\}/./g; s/\\[\\"]/./g' input \ | tr -d '\n' \ | wc -c) expr $X - $Y