Skip to content

Instantly share code, notes, and snippets.

@azalea
Created March 19, 2014 04:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save azalea/eff46a170f226f98d4b8 to your computer and use it in GitHub Desktop.
Save azalea/eff46a170f226f98d4b8 to your computer and use it in GitHub Desktop.
Linux one-liners

Find the length of each line in the file

while read line; do echo -n "$line" | wc -c; done< f1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment