Bestimmte Zeile/n einer Datei anzeigen


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. Zeile 5 ausgeben:
  2.  
  3. sed -n 5p datei.txt
  4.  
  5.  
  6.  
  7. Zeile 5 bis 10 ausgeben:
  8.  
  9. sed -n 5,10p file

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.