Purpose: To practice creating directories, copying files between directories, and moving files between directories on a Linux system.
Perform these steps on Matrix or another Linux system:
mkdir
command.cd
command.portable-document-format
directory using a single command. Use the cp
command with a filename pattern.open-document-text
directory using a single command.january
directory using a single command.tree
command to verify your result. It should look like this:. ├── april │ ├── april.odt │ └── april.pdf ├── february │ ├── february.odt │ └── february.pdf ├── january │ ├── january.odt │ └── january.pdf ├── march │ ├── march.odt │ └── march.pdf ├── open-document-text │ ├── april.odt │ ├── february.odt │ ├── january.odt │ └── march.odt └── portable-document-format ├── april.pdf ├── february.pdf ├── january.pdf └── march.pdf
Purpose: To practice creating directories, copying files between directories, and moving files between directories on a Windows system.
Perform these steps on a Windows system:
mkdir
command.cd
command.portable-document-format
directory using a single command. Use the copy
command with a filename pattern.open-document-text
directory using a single command.january
directory using a single command.tree /f
command to verify your work. The output should look like this:Folder PATH listing Volume serial number is FC3B-8615 C:. ├───april │ april.odt │ april.pdf │ ├───february │ february.odt │ february.pdf │ ├───january │ january.odt │ january.pdf │ ├───march │ march.odt │ march.pdf │ ├───open-document-text │ april.odt │ february.odt │ january.odt │ march.odt │ └───portable-document-format april.pdf february.pdf january.pdf march.pdf