Reputation: 25
Can someone tell me what does "-n" means?
Thank you in advance!
script_name.ksh –p file_name.txt –n Some Name
Upvotes: 0
Views: 129
Reputation: 369526
-n
is a parameter which is interpreted by script_name.ksh
. You need to read the documentation of script_name.ksh
to know how it interprets -n
.
Upvotes: 1