blob: dbc3b369ef0535bdbacf6ed69a721baf4a1cb8b7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShiftOS.Main.Terminal.Commands
{
class sftp:TerminalCommand
{
public override string Name { get; } = "sftp";
public override string Summary { get; } = "The Shift File Transfer Protocol (SFTP) Client.";
public override string Usage { get; } = "sftp <host> <username> <password> <port (Default - 22)>";
public override bool Unlocked { get; set; } = false;
public override void Run(params string[] args)
{
WriteLine(args[0]);
}
}
}
|