Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@BBischof
Last active March 9, 2016 01:45
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 BBischof/95a849b965411e38fd0b to your computer and use it in GitHub Desktop.
Save BBischof/95a849b965411e38fd0b to your computer and use it in GitHub Desktop.
Makes a little histogram in bash from your data. Uses = for bars
while read d n
do
printf "%s\t%${n}s" "$d" = | tr ' ' '=' ;
echo " $n" ;
done < data.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment