mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-16 14:26:53 -06:00
16 lines
324 B
Bash
Executable file
16 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 "$@";
|
|
|
|
#
|