From 1adfc424761230ed82438deb0e0fbc61f23e77e3 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Thu, 6 Apr 2023 09:17:34 +0000 Subject: [PATCH] Auto-update README --- README.md | 22 ---------------------- README_fr.md | 22 ---------------------- 2 files changed, 44 deletions(-) diff --git a/README.md b/README.md index 3f1d839..30021c5 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,6 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in ## Overview Easy and fast file sharing from the command-line. This code contains the server with everything you need to create your own instance. - Transfer.sh currently supports the s3 (Amazon S3), gdrive (Google Drive), storj (Storj) providers, and local file system (local). ### Features @@ -37,27 +36,6 @@ Transfer.sh currently supports the s3 (Amazon S3), gdrive (Google Drive), storj ![Screenshot of Transfer.sh](./doc/screenshots/transfer.sh-about.jpg) -## Disclaimers / important information - -# Using the shell function - -### Add alias to `.bashrc` or `.zshrc` - -Copy and past this function into your `.bashrc` or `.zshrc` file. -Replace `domain.tld` by your transfersh domain - -``` -transfer(){ if [ $# -eq 0 ];then echo "No arguments specified.\nUsage:\n transfer \n ... | transfer ">&2;return 1;fi;if tty -s;then file="$1";file_name=$(basename "$file");if [ ! -e "$file" ];then echo "$file: No such file or directory">&2;return 1;fi;if [ -d "$file" ];then file_name="$file_name.zip" ,;(cd "$file"&&zip -r -q - .)|curl --progress-bar --upload-file "-" "https://domain.tld/$file_name"|tee /dev/null,;else cat "$file"|curl --progress-bar --upload-file "-" "https://domain.tld/$file_name"|tee /dev/null;fi;else file_name=$1;curl --progress-bar --upload-file "-" "https://domain.tld/$file_name"|tee /dev/null;fi;} -``` -Now you can use transfer function - -``` -$ transfer hello.txt -``` - -### How to - -https://github.com/dutchcoders/transfer.sh/blob/main/examples.md ## Documentation and resources * Official app website: diff --git a/README_fr.md b/README_fr.md index 29f39e1..ab9f239 100644 --- a/README_fr.md +++ b/README_fr.md @@ -17,7 +17,6 @@ Si vous n’avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po ## Vue d’ensemble Easy and fast file sharing from the command-line. This code contains the server with everything you need to create your own instance. - Transfer.sh currently supports the s3 (Amazon S3), gdrive (Google Drive), storj (Storj) providers, and local file system (local). ### Features @@ -37,27 +36,6 @@ Transfer.sh currently supports the s3 (Amazon S3), gdrive (Google Drive), storj ![Capture d’écran de Transfer.sh](./doc/screenshots/transfer.sh-about.jpg) -## Avertissements / informations importantes - -# Using the shell function - -### Add alias to `.bashrc` or `.zshrc` - -Copy and past this function into your `.bashrc` or `.zshrc` file. -Replace `domain.tld` by your transfersh domain - -``` -transfer(){ if [ $# -eq 0 ];then echo "No arguments specified.\nUsage:\n transfer \n ... | transfer ">&2;return 1;fi;if tty -s;then file="$1";file_name=$(basename "$file");if [ ! -e "$file" ];then echo "$file: No such file or directory">&2;return 1;fi;if [ -d "$file" ];then file_name="$file_name.zip" ,;(cd "$file"&&zip -r -q - .)|curl --progress-bar --upload-file "-" "https://domain.tld/$file_name"|tee /dev/null,;else cat "$file"|curl --progress-bar --upload-file "-" "https://domain.tld/$file_name"|tee /dev/null;fi;else file_name=$1;curl --progress-bar --upload-file "-" "https://domain.tld/$file_name"|tee /dev/null;fi;} -``` -Now you can use transfer function - -``` -$ transfer hello.txt -``` - -### How to - -https://github.com/dutchcoders/transfer.sh/blob/main/examples.md ## Documentations et ressources * Site officiel de l’app :