Skip to content

Instantly share code, notes, and snippets.

@zhangzhiqiangcs
Created March 13, 2016 11:36
Show Gist options
  • Save zhangzhiqiangcs/dce5f83e4850d5ffbfdc to your computer and use it in GitHub Desktop.
Save zhangzhiqiangcs/dce5f83e4850d5ffbfdc to your computer and use it in GitHub Desktop.
显示文件指定行的内容
sed -n '5p' file
只看前n行内容
head -n file
只看后n行内容
tail -n file
只看第n到m行的内容
sed -n 'n,mp' file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment