Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/yorukot/superfile
Browse files Browse the repository at this point in the history
  • Loading branch information
yorukot committed Aug 1, 2024
2 parents 101e7e8 + ec6994f commit 16af612
Show file tree
Hide file tree
Showing 3 changed files with 188 additions and 131 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>
32 changes: 16 additions & 16 deletions website/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 16af612

Please sign in to comment.