brew remove arc browser

बनाया गया: 7 जून 2025

का उपयोग करके उत्तर दिया गया GPT-4o द्वारा Chat01

प्रश्न

brew remove arc browser

उत्तर

To uninstall Arc Browser using Homebrew on macOS, you can run the following command in your Terminal:

bash
brew uninstall --cask arc

Explanation:

  • brew uninstall: Removes a package.
  • --cask: Specifies that it's a GUI application (like Arc).
  • arc: The name of the cask formula for Arc Browser.

Optional Cleanup:

If you want to fully remove any remaining configuration or cached files, you can manually delete:

bash
rm -rf ~/Library/Application\ Support/Arc rm -rf ~/Library/Caches/company.thebrowser.Browser rm -rf ~/Library/Preferences/company.thebrowser.Browser.plist rm -rf ~/Library/Saved\ Application\ State/company.thebrowser.Browser.savedState

Let me know if you'd like a script to do the full cleanup automatically.

इस प्रश्नोत्तर को साझा करें