From da0f6bfc4256820760b16bfaa0e825f7b61e55c2 Mon Sep 17 00:00:00 2001 From: Robert Dailey Date: Fri, 16 Apr 2021 09:31:09 -0500 Subject: [PATCH] docs: Add `-o` to unzip in linux install one-liner This will overwrite any existing `trash.zip` file, which is useful if the user is upgrading and the `trash` executable is already there. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a0a60f67..864b1eac 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ too. Run this from the directory where you want `trash` to be installed. ```bash wget -O trash.zip https://github.com/rcdailey/trash-updater/releases/latest/download/trash-linux-x64.zip \ - && unzip trash.zip && rm trash.zip && chmod +x trash + && unzip -o trash.zip && rm trash.zip && chmod +x trash ``` ## Getting Started