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
If you want to copy something from one directory into the current directory, do this:
cp dir1/* .
This assumes you're not trying to copy hidden files.