how to rename directory in ubuntu code example
Example 1: ubuntu rename folder
sudo mv oldName newName
Example 2: rename folder bash
mv /home/user/oldname /home/user/newname
Example 3: how to rename the directory in terminal
mv [oldDirPath] [newDirPath]