Final answer:
Use the 'cp' command to copy all text files from 'fileAsst' with 'cp fileAsst/*.txt .' and all files from 'fileAsst/TweedleDee' with 'cp fileAsst/TweedleDee/* .' to copy them into the current directory.
Step-by-step explanation:
To copy all of the text files from your fileAsst directory and all files from your fileAsst/TweedleDee directory into your current directory without specifying individual file names, you would use the cp (copy) command in the terminal on a Unix-like operating system. Here's how you can do it:
- For all text files in the fileAsst directory: cp fileAsst/*.txt .
- For all files in the fileAsst/TweedleDee directory: cp fileAsst/TweedleDee/* .
This will copy all files with a .txt extension from the fileAsst directory and all files from the fileAsst/TweedleDee directory to the current working directory, represented by a single period ..