EN
Bash - copy directory recursively
0
points
This article will show you how to copy a directory and its contents to a new location under a new directory name in Bash.
Quick solution:
#!/bin/bash
cp -r ./SourceFolder ./DestinationFolder
Before:
After: