Help for this page

Select Code to Download


  1. or download this
    -s(<1000)
    
  2. or download this
    (-s) < 1000
    
  3. or download this
    grep { 1000 > -s } @ARGV; # or
    grep { -s <= 999 } @ARGV;
    
  4. or download this
    -s() < 1000
    
  5. or download this
    -s $_ < 1000