MCPcopy Create free account
hub / github.com/Facets-cloud/flow / ShellQuote

Function ShellQuote

internal/kitty/kitty.go:211–213  ·  view source on GitHub ↗

ShellQuote wraps s in single quotes with proper escaping. Same implementation as iterm.ShellQuote / terminal.ShellQuote / zellij.ShellQuote.

(s string)

Source from the content-addressed store, hash-verified

209// implementation as iterm.ShellQuote / terminal.ShellQuote /
210// zellij.ShellQuote.
211func ShellQuote(s string) string {
212 return "'" + strings.ReplaceAll(s, "'", `'\''`) + "'"
213}

Callers 2

TestShellQuoteFunction · 0.70
SpawnTabFunction · 0.70

Calls

no outgoing calls

Tested by 1

TestShellQuoteFunction · 0.56