I am a beginner in programming with perl and csh. I am facing some difficulty understanding code like:
/some_perl_algorithm.pl -n 166 \
-p "/some_xml.list." \
-s "" \
/some_other.list
exit $status
- what do these
-n
-p
-s
switches mean? - what do these backslashes at the end of the lines (
\
) mean? - Is that
/some_perl_algorithm.pl
the same asperl some_perl_algorithm.pl
? - what does this code try to do?
Can anyone help? Or point me some good tutorials?