Skip to content

Commit 85042c0

Browse files
author
Carlos Cabanero
committed
Fixed composed command names
- mosh-command -> mosh - ssh-command -> ssh ...
1 parent 36b4beb commit 85042c0

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

Blink/Commands/mosh/MoshCommand.swift

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ fileprivate let Version = "1.4.0"
3636

3737
struct MoshCommand: ParsableCommand {
3838
static var configuration = CommandConfiguration(
39+
commandName: "mosh",
3940
abstract: "",
4041
discussion: """
4142
""",

Blink/Commands/ssh/CopyFiles.swift

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ public func copyfiles_main(argc: Int32, argv: Argv) -> Int32 {
5656

5757
struct BlinkCopyCommand: ParsableCommand {
5858
static var configuration = CommandConfiguration(
59+
commandName: "fcp",
5960
// Optional abstracts and discussions are used for help output.
6061
abstract: "Copy SOURCE to DEST or multiple SOURCEs to a DEST directory.",
6162
discussion: """

Blink/Commands/ssh/SSHAgentAdd.swift

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ import ios_system
3939

4040
struct BlinkSSHAgentAddCommand: ParsableCommand {
4141
static var configuration = CommandConfiguration(
42+
commandName: "ssh-agent",
4243
abstract: "Blink Agent Control",
4344
discussion: """
4445
""",

Blink/Commands/ssh/SSHConfig.swift

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ fileprivate let Version = "1.0.0"
3939
struct SSHCommand: ParsableCommand {
4040
static var configuration = CommandConfiguration(
4141
// Optional abstracts and discussions are used for help output.
42+
commandName: "ssh",
4243
abstract: "A LibSSH SSH client (remote login program)",
4344
discussion: """
4445
ssh (SSH client) is a program for logging into a remote machine and for executing commands on a remote machine. It is intended to replace rlogin and rsh, and provide secure encrypted communications between two untrusted hosts over an insecure network.

0 commit comments

Comments
 (0)