From 8013d3d8a933b6bae3ed9ceb37bebb42cf28ea56 Mon Sep 17 00:00:00 2001 From: Ilyes Kechidi Date: Tue, 7 Feb 2017 14:40:21 +0100 Subject: added README for transfer.sh plugin --- plugins/transfer/README.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 plugins/transfer/README.md (limited to 'plugins/transfer/README.md') diff --git a/plugins/transfer/README.md b/plugins/transfer/README.md new file mode 100644 index 000000000..e14b94aa9 --- /dev/null +++ b/plugins/transfer/README.md @@ -0,0 +1,7 @@ +# `transfer.sh` plugin +transfer.sh is an easy file sharing service from the command line + +## Usage +Example +> transfer file.txt + -- cgit v1.2.3-70-g09d2 From 6cefe70ffc8f5d827a9b4341129114a843ceb248 Mon Sep 17 00:00:00 2001 From: Ilyes Kechidi Date: Thu, 9 Feb 2017 02:29:24 +0100 Subject: updated transfer README.md --- plugins/transfer/README.md | 1 + 1 file changed, 1 insertion(+) (limited to 'plugins/transfer/README.md') diff --git a/plugins/transfer/README.md b/plugins/transfer/README.md index e14b94aa9..9bf488d4e 100644 --- a/plugins/transfer/README.md +++ b/plugins/transfer/README.md @@ -4,4 +4,5 @@ transfer.sh is an easy file sharing service from the command line ## Usage Example > transfer file.txt +> transfer directory/ -- cgit v1.2.3-70-g09d2 From 3d8ee47c7a55119318d698a90f523e04fffb878d Mon Sep 17 00:00:00 2001 From: Marc Cornellà Date: Fri, 25 May 2018 20:44:56 +0200 Subject: Update README formatting --- plugins/transfer/README.md | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) (limited to 'plugins/transfer/README.md') diff --git a/plugins/transfer/README.md b/plugins/transfer/README.md index 9bf488d4e..5fa064445 100644 --- a/plugins/transfer/README.md +++ b/plugins/transfer/README.md @@ -1,8 +1,24 @@ -# `transfer.sh` plugin -transfer.sh is an easy file sharing service from the command line +# `transfer` plugin + +[`transfer.sh`](https://transfer.sh) is an easy to use file sharing service from the command line ## Usage -Example -> transfer file.txt -> transfer directory/ +Add `transfer` to your plugins array in your zshrc file: +```zsh +plugins=(... transfer) +``` + +Then you can: + +- transfer a file: + +```zsh +transfer file.txt +``` + +- transfer a whole directory (it will be automatically compressed): + +```zsh +transfer directory/ +``` -- cgit v1.2.3-70-g09d2 From 05b617066ba5a37ef0c533385efd6e232a387b8f Mon Sep 17 00:00:00 2001 From: Arvindraj Date: Fri, 2 Nov 2018 22:10:13 +0530 Subject: transfer: add deprecation notice (#7372) Fixes #7371 Signed-off-by: Arvindraj Co-authored-by: Stephen Ward --- plugins/transfer/README.md | 4 ++++ plugins/transfer/transfer.plugin.zsh | 10 +++++++++- 2 files changed, 13 insertions(+), 1 deletion(-) (limited to 'plugins/transfer/README.md') diff --git a/plugins/transfer/README.md b/plugins/transfer/README.md index 5fa064445..37c7ca2f7 100644 --- a/plugins/transfer/README.md +++ b/plugins/transfer/README.md @@ -1,5 +1,9 @@ # `transfer` plugin +**NOTICE: The `transfer` plugin is deprecated and will be removed soon, since the [transfer.sh](https://transfer.sh) service will be shutdown on 30th November 30th, 2018. Please move your files to an alternative file sharing service provider.** + +---- + [`transfer.sh`](https://transfer.sh) is an easy to use file sharing service from the command line ## Usage diff --git a/plugins/transfer/transfer.plugin.zsh b/plugins/transfer/transfer.plugin.zsh index 7a7cd85ec..8fd09ef04 100644 --- a/plugins/transfer/transfer.plugin.zsh +++ b/plugins/transfer/transfer.plugin.zsh @@ -12,6 +12,14 @@ # Modified to use tar command instead of zip # +echo -ne '\e[1;33m' +cat <<-EOF + [oh-my-zsh] WARNING: The 'transfer' plugin is deprecated and will be removed after + [oh-my-zsh] transfer.sh shuts down on November 30th. We suggest you stop using the + [oh-my-zsh] plugin and find an alternative file hosting service. +EOF +echo -ne '\e[0m' + curl --version 2>&1 > /dev/null if [ $? -ne 0 ]; then echo "Could not find curl." @@ -64,4 +72,4 @@ transfer() { # cleanup rm -f $tmpfile -} \ No newline at end of file +} -- cgit v1.2.3-70-g09d2 From 3d8f2bda599c8c6d160dc448e5ab28aaf2d5e90d Mon Sep 17 00:00:00 2001 From: Marc Cornellà Date: Tue, 13 Nov 2018 10:54:33 +0100 Subject: Revert "transfer: add deprecation notice (#7372)" (#7402) This reverts commit 05b617066ba5a37ef0c533385efd6e232a387b8f. --- plugins/transfer/README.md | 4 ---- plugins/transfer/transfer.plugin.zsh | 10 +--------- 2 files changed, 1 insertion(+), 13 deletions(-) (limited to 'plugins/transfer/README.md') diff --git a/plugins/transfer/README.md b/plugins/transfer/README.md index 37c7ca2f7..5fa064445 100644 --- a/plugins/transfer/README.md +++ b/plugins/transfer/README.md @@ -1,9 +1,5 @@ # `transfer` plugin -**NOTICE: The `transfer` plugin is deprecated and will be removed soon, since the [transfer.sh](https://transfer.sh) service will be shutdown on 30th November 30th, 2018. Please move your files to an alternative file sharing service provider.** - ----- - [`transfer.sh`](https://transfer.sh) is an easy to use file sharing service from the command line ## Usage diff --git a/plugins/transfer/transfer.plugin.zsh b/plugins/transfer/transfer.plugin.zsh index 8fd09ef04..7a7cd85ec 100644 --- a/plugins/transfer/transfer.plugin.zsh +++ b/plugins/transfer/transfer.plugin.zsh @@ -12,14 +12,6 @@ # Modified to use tar command instead of zip # -echo -ne '\e[1;33m' -cat <<-EOF - [oh-my-zsh] WARNING: The 'transfer' plugin is deprecated and will be removed after - [oh-my-zsh] transfer.sh shuts down on November 30th. We suggest you stop using the - [oh-my-zsh] plugin and find an alternative file hosting service. -EOF -echo -ne '\e[0m' - curl --version 2>&1 > /dev/null if [ $? -ne 0 ]; then echo "Could not find curl." @@ -72,4 +64,4 @@ transfer() { # cleanup rm -f $tmpfile -} +} \ No newline at end of file -- cgit v1.2.3-70-g09d2