What is the output of the closing ls
command in the sequence shown below?
$ pwd
/Users/jamie/data
$ ls
proteins.dat
$ mkdir recombined
$ mv proteins.dat recombined/
$ cp recombined/proteins.dat ../proteins-saved.dat
$ ls
proteins-saved.dat recombined
recombined
proteins.dat recombined
proteins-saved.dat
/Users/jamie/data
` directory$ mkdir recombined
----> create new folder$ mv proteins.dat recombined/
-----> move proteins.dat to the new folder$ cp recombined/proteins.dat ../proteins-saved.dat
-----> copies this file to the parent directory of our current location