From 863aaa18c938cfdafab453157a23196c3fe2344d Mon Sep 17 00:00:00 2001 From: Robert Vokac Date: Sat, 1 Jul 2023 10:02:14 +0200 Subject: [PATCH] Initial commit --- .gitignore | 12 ++++++++++++ README.md | 16 ++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..eecbab9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,12 @@ +#files to ignore + +*.metadata/** +*.recommenders/** +*target/** +*build/** +*.idea/** +*.iml + +#*.class +/target/ +*generated/* diff --git a/README.md b/README.md new file mode 100644 index 0000000..a8481e0 --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +# ftps + +Ftps is a tool to communicate with a SFTP server + +Following patch may be needed in future to be applied: https://eng.wealthfront.com/2016/06/10/connecting-to-an-ftps-server-with-ssl-session-reuse-in-java-7-and-8/ + +## Usage + +You run: ftps user:password@host:port/workindDirectory upload fileName + +## How to setup your environment on Linux + +Example: + + alias ftps='java -jar /rv/data/desktop/code/code.nanoboot.org/nanoboot/ftps/target/ftps-0.0.0-SNAPSHOT-jar-with-dependencies.jar' +