Skip to content
This repository has been archived by the owner on Feb 16, 2019. It is now read-only.

update ls flag to sort by size #10

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions _episodes/01-trimming.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,10 +187,11 @@ SRR2589044_1.trim.fastq.gz SRR2589044_2.fastq.gz SRR2589044_2un.trim.fa
{: .output}

The output file is also a FASTQ file. It should be smaller than our
input file because we've removed reads. We can confirm this:
input file because we've removed reads. We can confirm this
by running the `ls` command with the `-S` flag to sort by size.

~~~
$ ls SRR2589044* -l -h
$ ls SRR2589044* -l -S
~~~
{: .bash}

Expand Down