Moving Around
Peeping
Help!!!
Desperate Search
Plumbing etc.
100

pwd

What is my Present Working Directory

100

tail sequence.fastq

What is a way to look at the last 10 lines of a fastq file?
100

man prokka

What is show the manual for the program prokka?

100
grep "one" <file>

What is a way to display every line in <file> that includes one.

100

awk -F'\t' '{print $2}' <my_file> | less -S

What is print the second column of a file and view with less?

200

mv <file> ../<new_file>

What is move <file> up one level and rename as <new_file>

200

less -S textfile.txt

What is the best way to view a text file without line wrapping?

200

blastx -help

What is show the help menu for blastx?

200

grep -c '>NODE' contigs.fasta

What is count the number of contigs in a SPAdes assembly?

200

ls > file.txt

What is save the list of directory contents to a file?

300

cp Sample*/*.fastq.gz ./

What is copy all my fastq files from all directories to my current directory?

300

more my_reads.fastq.gz

What is the worst way to attempt to open a gzipped file?

300

whatis cal

What is show the one line description of the calendar program?

300

grep '>' contigs.fasta | less 

What is display all the headers in my contigs file?

300

ls | less

What is view the list of files in your current directory with less?

400

cd ~/*/

What is move into the first directory in my home directory?

400

grep -v '#' alignment.sam | tabview -

What is view a sequence alignment file without the header in an excel like format?

400

How do I run spades if I have a diploid organism?

What is google?

400

history | grep cat

what is print all the commands that contain the word cat?

400

ls >> file.txt

What is append the list of files in my current directory to a file?

M
e
n
u