I have two questions:
1.When I read some bash scripts, I found a way to iterate all the options passed to the current script:
for option
do
echo $option
done
However, I know little about what "option" is in bash. Can anyone give me some references about that? Thanks.
2.Just as above, when I passed "-e" or "-n" options to my script, "echo" can't print them as a string because "echo" treats them as options! How to make "echo" print "-e" and "-n" as content strings?