blob: 9f9d06dcbc61879a3e6ee970725d60b7b67d2584 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/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 "$@";
#
|