nighthawk 0.1.0

AI terminal autocomplete — zero config, zero login, zero telemetry
Documentation
{
  "name": "mv",
  "description": "Move & rename files and folders",
  "options": [
    {
      "names": [
        "-f"
      ],
      "description": "Do not prompt for confirmation before overwriting the destination path"
    },
    {
      "names": [
        "-i"
      ],
      "description": "Cause mv to write a prompt to standard error before moving a file that would overwrite an existing file"
    },
    {
      "names": [
        "-n"
      ],
      "description": "Do not overwrite existing file"
    },
    {
      "names": [
        "-v"
      ],
      "description": "Cause mv to be verbose, showing files after they are moved"
    }
  ],
  "args": [
    {
      "name": "source",
      "is_variadic": true,
      "template": "filepaths"
    },
    {
      "name": "target",
      "template": "filepaths"
    }
  ]
}