Skip to content

Commit

Permalink
Fixed composed command names
Browse files Browse the repository at this point in the history
- mosh-command -> mosh
- ssh-command -> ssh
...
  • Loading branch information
Carlos Cabanero committed Apr 18, 2024
1 parent 36b4beb commit 85042c0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions Blink/Commands/mosh/MoshCommand.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ fileprivate let Version = "1.4.0"

struct MoshCommand: ParsableCommand {
static var configuration = CommandConfiguration(
commandName: "mosh",
abstract: "",
discussion: """
""",
Expand Down
1 change: 1 addition & 0 deletions Blink/Commands/ssh/CopyFiles.swift
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ public func copyfiles_main(argc: Int32, argv: Argv) -> Int32 {

struct BlinkCopyCommand: ParsableCommand {
static var configuration = CommandConfiguration(
commandName: "fcp",
// Optional abstracts and discussions are used for help output.
abstract: "Copy SOURCE to DEST or multiple SOURCEs to a DEST directory.",
discussion: """
Expand Down
1 change: 1 addition & 0 deletions Blink/Commands/ssh/SSHAgentAdd.swift
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ import ios_system

struct BlinkSSHAgentAddCommand: ParsableCommand {
static var configuration = CommandConfiguration(
commandName: "ssh-agent",
abstract: "Blink Agent Control",
discussion: """
""",
Expand Down
1 change: 1 addition & 0 deletions Blink/Commands/ssh/SSHConfig.swift
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ fileprivate let Version = "1.0.0"
struct SSHCommand: ParsableCommand {
static var configuration = CommandConfiguration(
// Optional abstracts and discussions are used for help output.
commandName: "ssh",
abstract: "A LibSSH SSH client (remote login program)",
discussion: """
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.
Expand Down

0 comments on commit 85042c0

Please sign in to comment.