Skip to content

Instantly share code, notes, and snippets.

@suryagaddipati
Created November 9, 2012 22:52
Show Gist options
  • Save suryagaddipati/4048854 to your computer and use it in GitHub Desktop.
Save suryagaddipati/4048854 to your computer and use it in GitHub Desktop.
#! /bin/bash
function x() {
echo $1
y $@
}
function y() {
echo $1
}
x '1 2 3'
output
1 2 3
1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment