commit 379089c24f82fe4119a167816184c7a813ace4bb parent b45f2845a44c8dab00f450694752c7130117abb7 Author: pyratebeard <root@pyratebeard.net> Date: Thu, 10 Jan 2019 16:12:45 +0000 sed page and link Diffstat:
M | technology/linux/general/index.md | | | 1 | + |
A | technology/linux/general/sed.md | | | 6 | ++++++ |
2 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/technology/linux/general/index.md b/technology/linux/general/index.md @@ -13,6 +13,7 @@ - [processes](processes) - [python](python) - [rtv](rtv) +- [sed](sed) - [ssh](ssh) - [systemctl](systemctl) - [tmux](tmux) diff --git a/technology/linux/general/sed.md b/technology/linux/general/sed.md @@ -0,0 +1,6 @@ +# sed + +print specific line number from file +``` +sed 'n!d' file +```