Rename Folder with Deb Script
August 10th, 2022
eg: mv /var/mobile/Library/SBSettings/Themes/OriginalFolderName /var/mobile/Library/SBSettings/NewFolderName
The above command doesn’t wok.
What am i doing wrong?
Thanks.
That is the command to rename. Please note you are renaming it and moving it outside of the Themes folder (since /Themes/ is not in the second half of the command).
Are you getting any errors when doing this? If not, you will need to strace it:
strace mv /path/to/oldfilename /path/to/newfilename
This will show you the system calls and you can see where it goes wrong, it will be towards the end. If strace is not installed, should be available via your package manager, I assume apt-get.