Skip to content

Instantly share code, notes, and snippets.

@Paulpeter
Created February 7, 2017 20:24
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 Paulpeter/a8e0b4f5ef989ef9518e09dbd41e789f to your computer and use it in GitHub Desktop.
Save Paulpeter/a8e0b4f5ef989ef9518e09dbd41e789f to your computer and use it in GitHub Desktop.
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