@@ -24,9 +24,16 @@ We've also learned how to use `cd` to change locations and `ls` to list the cont
2424of a directory. Now we're going to learn some additional commands for moving around
2525within our file system.
2626
27- Use the commands we've learned so far to navigate to the ` dc_sample_data ` directory, if
27+ Use the commands we've learned so far to navigate to the ` dc_sample_data/untrimmed_fastq ` directory, if
2828you're not already there.
2929
30+ ~~~
31+ $ cd
32+ $ cd dc_sample_data
33+ $ cd untrimmed_fastq
34+ ~~~
35+ {: .bash}
36+
3037What if we want to move back up and out of this directory and to our top level
3138directory? Can we type ` cd dc_sample_data ` ? Try it and see what happens.
3239
7178{: .bash}
7279
7380~~~
74- r_genomics sra_metadata untrimmed_fastq variant_calling.tar.gz
81+ sra_metadata untrimmed_fastq
7582~~~
7683{: .output}
7784
@@ -84,7 +91,7 @@ $ ls ../../
8491~~~
8592{: .bash}
8693
87- prints the contents of ` /home ` , which is one level up from your home directory.
94+ prints the contents of ` /home ` , which is one level up from your root directory.
8895
8996> ## Finding hidden directories
9097>
@@ -111,7 +118,7 @@ prints the contents of `/home`, which is one level up from your home directory.
111118> > {: .bash}
112119> >
113120> > ~~~
114- > > . .. .hidden r_genomics sra_metadata untrimmed_fastq variant_calling.tar.gz
121+ > > . .. .hidden sra_metadata untrimmed_fastq
115122> > ~~~
116123> > {: .output}
117124> >
@@ -160,7 +167,7 @@ $ ls dc_sample_data
160167{: .bash}
161168
162169~~~
163- r_genomics sra_metadata untrimmed_fastq variant_calling.tar.gz
170+ sra_metadata untrimmed_fastq
164171~~~
165172{: .output}
166173
@@ -315,6 +322,11 @@ $ ls ~
315322~~~
316323{: .bash}
317324
325+ ~~~
326+ dc_sample_data FastQC Trimmomatic-0.32
327+ ~~~
328+ {: .output}
329+
318330This prints the contents of your home directory, without you needing to
319331type the full path.
320332
0 commit comments