Skip to content

Instantly share code, notes, and snippets.

@bcicen
Created February 4, 2015 17:52
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 bcicen/6c874f199575724081ba to your computer and use it in GitHub Desktop.
Save bcicen/6c874f199575724081ba to your computer and use it in GitHub Desktop.
test.sh:
#!/bin/bash
echo ${1}
echo ${1:0:1}
echo ${1:0:2}
echo ${1:0:3}
$ ./test.sh tester
tester
t
te
tes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment