Skip to content

Commit 5177365

Browse files
authored
Add uninstall step to README.md
1 parent 87bc168 commit 5177365

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,35 @@ go install github.com/drgsn/filefusion/cmd/filefusion@latest
5757

5858
Or download the latest binary for your platform from the [releases page](https://github.com/drgsn/filefusion/releases).
5959

60+
61+
## 🗑️ Uninstallation
62+
63+
To uninstall FileFusion:
64+
65+
1. Remove the installation directory:
66+
```bash
67+
rm -rf ~/.filefusion
68+
```
69+
70+
2. Remove FileFusion from your shell configuration file. Depending on your shell and OS, edit one of these files:
71+
- macOS Bash users: `~/.bash_profile`
72+
- Linux Bash users: `~/.bashrc`
73+
- Zsh users: `~/.zshrc`
74+
- Fish users: `~/.config/fish/config.fish`
75+
- Windows PowerShell users: `$HOME/Documents/PowerShell/Microsoft.PowerShell_profile.ps1`
76+
77+
Look for and remove these two lines:
78+
```bash
79+
# FileFusion
80+
export PATH="$PATH:$HOME/.filefusion"
81+
```
82+
83+
### Go Installation
84+
If you installed using Go:
85+
```bash
86+
go clean -i github.com/drgsn/filefusion/cmd/filefusion
87+
```
88+
6089
## 📋 Default Values
6190

6291
| Setting | Default Value | Description |

0 commit comments

Comments
 (0)