Answer:
cp /path/to/source.txt .
is the general format of copying a file to the current directory
cp ~/UnixCourse/fileAsst/TweedleDee/hatter.txt .
You can refer to the current directory with a dot (.)
Step-by-step explanation:
First, we would like to delete all files in our current directory (commandsAsst directory). To delete the files inside the directory, we would run the following command:
rm -r commandsAsst/*
This command delete the files recursively. Usually, the command for deleting is rm -r. The operator * run rm -r on every file or directory within commandsAsst.