Skip to content

Instantly share code, notes, and snippets.

@Paulpeter
Created February 7, 2017 20:24
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Script to echo back your arguments
#!/usr/bin/sh
i=0
sentence=$(echo "")
for item in $@
do
if [ $i -eq 0 ]
then
i=1
else
sentence=sentence"$item"
fi
done
echo $sentence
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment