How to print arguments passed to configure script?
- by Sam
Hi,
I'm trying to print arguments passed to a ./configure script. Calling 'echo' on $BASH_ARGV will just print the last set of arguments. For example if I run:
./configure --enable-foo --enable-bar
echo $BASH_ARGV will print only "--enable-bar"
How do I print all the arguments? Thanks!