You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 22, 2021. It is now read-only.
Hello,
I am rooted with Magisk and I am using the latest version from the play store
I tried to execute the following script:
#!/system/bin/sh
su -c rm -r /data/data/com.google.android.youtube/cache/image_manager_disk_cache/*.0
The output is:
rm /data/data/com.google.android.youtube/cache/image_manager_disk_cache/*.0: no such file or directory
The expected behavior is the removal of the files ending in .0 in the directory, which works with other apps (such as SH SCRIPT RUNNER) on the play store but doesn't work with Script manager.
The app has root privileges and su -c is supposed to execute the command as root.
Am I missing something here ?
Sorry if the issue is on my side I am a beginner with root and commands
The text was updated successfully, but these errors were encountered:
@Sarlay
Firstly, you don't have to use su -c. Every command executing from app after granting root permission has full su privilege.
Secondly, the output clearly says there is no root related issues exist. Otherwise, the output could be something like "permission denied to..."
& finally, have you tried to execute the same command from a terminal or ADB. I guess you will get a similar outout.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello,
I am rooted with Magisk and I am using the latest version from the play store
I tried to execute the following script:
The output is:
The expected behavior is the removal of the files ending in .0 in the directory, which works with other apps (such as SH SCRIPT RUNNER) on the play store but doesn't work with Script manager.
The app has root privileges and su -c is supposed to execute the command as root.
Am I missing something here ?
Sorry if the issue is on my side I am a beginner with root and commands
The text was updated successfully, but these errors were encountered: