AnastasiaSulyagina e81f4ab7de init
2016-08-19 14:50:14 +03:00

17 lines
324 B
Bash
Executable File

#!/bin/bash
#
# brewcask-showargs
#
# A trivial `brew cask` external command, implemented in bash.
# Displays the arguments passed to it. Example usage:
#
# brew cask showargs these were my args
#
set -e; # exit on uncaught error
set +o histexpand; # don't expand history expressions
echo "$@";
#