Skip to content

Instantly share code, notes, and snippets.

@quickshiftin
Last active October 27, 2015 01:39
Show Gist options
  • Save quickshiftin/3e6286c0dd145e3ae17d to your computer and use it in GitHub Desktop.
Save quickshiftin/3e6286c0dd145e3ae17d to your computer and use it in GitHub Desktop.
strlen from the command line...
function strlen
{
local string="$1"
local size=${#string}
echo $size
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment