Home > Back-end >  how can i remove directory or uninstall homebrew from my terminal? I am running ubuntu terminal on m
how can i remove directory or uninstall homebrew from my terminal? I am running ubuntu terminal on m

Time:06-21

ubeath@DESKTOP:~$ rmdir homebrew
rm:cannot remove 'homebrew':is a directory
ubeath@DESKTOP:~$ rmdir homebrew
rmdir: failed to remove 'homebrew':Directory not empty
ubeath@DESKTOP:~$ rm -d homebrew
rm: cannot remove 'homebrew':Directory not empty

CodePudding user response:

just use "rm -rf homebrew", if it doesn't work try "rm -f homebrew"

  • Related