Extract lines from a file with sed
Easy way to extract line ranges (from line 200 to line 210) with sed.
sed -n '200,210p' data/Homo_sapiens.GRCh38.dna.chromosome.18.fa
# then pipe it to a new file with
sed -n '200,210p' data/Homo_sapiens.GRCh38.dna.chromosome.18.fa > new.fa
head
or tail
could be used to extract from begining of the end of the file.
Other notes
- c Calling assembly functions from C
- c Sending signals to C programs
- plan9 Fix bootloader not being written in Plan9
- Convert all MKV files into other formats
- plan9 Run 9front in Qemu
- Add lazy loading of images in Jekyll posts
- Write ISO to USB Key
- c Extend Lua with custom C functions using Clang
- Extending dte editor
- Make B/W SVG charts with matplotlib
- Simple presentations with Markdown
- dcss Sane default for Dungeon Crawl Stone Soup Online edition
- Uninstall Ollama from a Linux box
- Cache busting in Hugo
- c Embedding resources into binary with C