Skip to content

Instantly share code, notes, and snippets.

@programmerq
Created December 22, 2014 22:22
Show Gist options
  • Save programmerq/942cbdc668bfb437620b to your computer and use it in GitHub Desktop.
Save programmerq/942cbdc668bfb437620b to your computer and use it in GitHub Desktop.
$ cat testentrypoint.sh
#!/bin/bash
echo foobar
exec $@
$ ./testentrypoint.sh echo hello world
foobar
hello world
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment