One at a time! .small[_\[Last time we DDoS'd the ENA\]_ 😅]
+ --- class: center,middle @@ -1942,7 +1951,11 @@ ```bash $ echo HOME ``` +] +-- + +.left-column-33[ ``` HOME ``` @@ -1964,6 +1977,11 @@ ```bash $ echo $HOME ``` +] + +-- + +.left-column-33[ ``` /home/james/ ``` @@ -1996,17 +2014,21 @@ # Making your own .left-column[ -- Any variable can be easily overwritten, which is one reason why they are so useful. +- To assign your own variable, + - Write variable name + - Then the `=` symbol. + - And the contents of the variable ] -- .left-column[ -- To assign your own variable, - - Write variable name - - Then the `=` symbol. - - And the contents of the variable + +- Any variable can be easily overwritten, + - This is why it is so useful + - Change contents, not your code! + ] -- @@ -2178,7 +2200,7 @@ -- ```bash -$ for fastq in ~/BareBonesBash/ERR*; do +$ for fastq in ~/BareBonesBash/*; do ln -s $fastq ~/BareBonesBash/FastQ.Portals done