EN
Bash - move directory recursively
0
points
This article will show you how to move a directory to a new location in Bash.
Syntax
mv source target
Note: the source can be a directory or a file
Practical example
#!/bin/bash
mv ./Folder ./DestinationFolder
Before:
After: