Skip to content

Commit

Permalink
Merge pull request #310 from realhackcraft/patch-1
Browse files Browse the repository at this point in the history
Better installation instructions in README
  • Loading branch information
yorukot authored Jul 31, 2024
2 parents 8bb79b8 + a55b4ed commit a16c2fa
Showing 1 changed file with 38 additions and 3 deletions.
41 changes: 38 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,18 @@

## Installation

Quick install (Support MacOs and linux)
### Quick install

Using bash (Support MacOS and linux)

```bash
bash -c "$(wget -qO- https://superfile.netlify.app/install.sh)"
bash -c "$(curl -sLo- https://superfile.netlify.app/install.sh)"
```

Using powershell (Support Windows)

```powershell
powershell -ExecutionPolicy Bypass -Command "Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://superfile.netlify.app/install.ps1'))"
```

### More installation methods
Expand Down Expand Up @@ -106,6 +114,33 @@ After you install superfile, you can go [here](https://superfile.netlify.app/get

[**Click me to see common problem fix**](https://superfile.netlify.app/troubleshooting/)

## Uninstalling

### MacOS and Linux

On MacOS and Linux, you can uninstall superfile by simply removing the binary. If you installed superfile with sudo, run

```bash
sudo rm /usr/local/bin/spf
```

If you installed superfile without sudo, run

```bash
rm ~/.local/bin/spf
```

If you don't rember, just try removing both.


### Window

To uninstall superfile on Windows, use this powershell script.

```powershell
powershell -ExecutionPolicy Bypass -Command "Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://superfile.netlify.app/uninstall.ps1'))"
```

## Contributing

If you want to contribute please follow the [contribution guide](./CONTRIBUTING.md)
Expand Down Expand Up @@ -145,4 +180,4 @@ Your stars are my motivation to keep updating!

## ༼ つ ◕_◕ ༽つ Please share.

</div>
</div>

0 comments on commit a16c2fa

Please sign in to comment.