Skip to content

Instantly share code, notes, and snippets.

@jacobsapps
Created September 7, 2025 10:21
Show Gist options
  • Select an option

  • Save jacobsapps/8bb41710a403c3d88c6a7e78e2c7304d to your computer and use it in GitHub Desktop.

Select an option

Save jacobsapps/8bb41710a403c3d88c6a7e78e2c7304d to your computer and use it in GitHub Desktop.
#!/usr/bin/swift
import Subprocess
let result = try await run(
.name("ls"),
arguments: ["-1"],
output: .string(limit: 1 << 20)
)
print(result.standardOutput ?? "")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment