diff --git a/data/sftp.json b/data/sftp.json new file mode 100644 index 0000000..e499f44 --- /dev/null +++ b/data/sftp.json @@ -0,0 +1,26 @@ +{ + "functions": { + "shell": [ + { + "code": "sftp [user@host]\n!/bin/sh\n" + } + ], + "file-upload": [ + { + "description": "Send local file to a SSH server.", + "code": "sftp [user@host]\nput [source_file] [destination_file]\n" + } + ], + "file-download": [ + { + "description": "Fetch a remote file from a SSH server.", + "code": "sftp [user@host]\nget [source_file] [destination_file]\n" + } + ], + "sudo": [ + { + "code": "sudo sftp [user@host]\n!/bin/sh\n" + } + ] + } +} \ No newline at end of file