Help for this page

Select Code to Download


  1. or download this
    perl -ne '/Baki/ and $x=$_}{print$x' file.txt
    
  2. or download this
    perl -ne '/Baki/ and $x=$_; END{print$x}' file.txt
    
  3. or download this
    cat file.txt |grep "Baki" |tail -1
    
  4. or download this
    grep 'Baki' file.txt |tail -1