Skip to content

Instantly share code, notes, and snippets.

@inceabdullah
Created August 2, 2024 10:54
Show Gist options
  • Select an option

  • Save inceabdullah/69b9c555bd1821730e8c0dee890203a1 to your computer and use it in GitHub Desktop.

Select an option

Save inceabdullah/69b9c555bd1821730e8c0dee890203a1 to your computer and use it in GitHub Desktop.
Escape Parenthesis Function
#!/bin/bash
function escape_parentheses () {
local input="$1"
echo "$input" | sed -e 's@(@\\(@g' -e 's@)@\\)@g'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment