The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM



Thread: double dashes
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 05-16-2006
Perderabo's Avatar
Perderabo Perderabo is offline
Unix Daemon
 

Join Date: Aug 2001
Location: Washington DC Area
Posts: 8,425
print can have options like this:
print -u2 message
And option are recognized by the leading dash. So "print -3" looks like an erroneous option is being specified. "print -- -3" is the solution. -- means no more options follow.
Reply With Quote