Skip to content
Snippets Groups Projects
Commit f62f80ae authored by alexis.dereeper_ird.fr's avatar alexis.dereeper_ird.fr
Browse files

Update bash-extracting_from_files.md

parent b7ff0604
No related branches found
No related tags found
No related merge requests found
Pipeline #38987 passed
......@@ -19,7 +19,15 @@ Using commands `head` and `tail` allows to do this tasks.
tail -n 10 Fasta/enterobacteries.fasta
```
## Counting lines (wc)
## Counting words/lines (wc)
!!! question "Count the number of characters of `enterobacteries.fasta` in the `Fasta` directory"
??? example "Click to show the solution"
```bash
wc Fasta/enterobacteries.fasta
```
## Sorting a tabular file (sort)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment