Is it possible, in UNIX, to print a particular line of a file? For example I would like to print line 10 of file example.c
. I tried with cat
, ls
, awk
but apparently either these don't have the feature or I'm not able to properly read the man
:-).
Using awk:
awk 'NR==10' file
Using sed:
sed '10!d' file
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With