Help for this page

Select Code to Download


  1. or download this
    sed -n '60,70 p' wordlist
    
  2. or download this
    tail -n +60 wordlist|head -10
    
  3. or download this
    perl -ne 'print if $. ~~ [60..70]' wordlist
    
  4. or download this
    perl -e 'my @lines=`cat wordlist`;print @lines[60..70];'
    
  5. or download this
    perl -e 'print @(`cat wordlist`)[60..70];'
    
  6. or download this
    perl -e 'print (@(`cat wordlist`))[60..70];'