how to copy and paste a file in linux terminal code example
Example 1: how to copy file in ubuntu terminal
cp ~/Downloads/your-file.txt ~/Documents/
Example 2: copy and paste file in linux shell
# use cp for copy pasting BOTH files and folders in linux shell
cp source_file target_file
cp source_dir target_dir