In bash I need to do this:
take all files in a directory
copy them into an existing directory
How do I do this? I tried
What you want is:
cp -R t1/. t2/
The dot at the end tells it to copy the contents of the current directory, not the directory itself. This method also includes hidden files and folders.