Created
September 5, 2024 21:10
-
-
Save cgsdev0/c4352f608d50995234a6ce9ef2a296ed to your computer and use it in GitHub Desktop.
relevant twitter thread: https://x.com/serpent7776/status/1831796107762135064
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
function quote_args() { | |
SPACER= | |
while [[ $# -gt 0 ]]; do | |
printf "%s\"%s\"" "$SPACER" "${1//\"/\\\"}" | |
shift | |
SPACER=' ' | |
done | |
} | |
function ag() { vim +"Ag $(quote_args "$@")"; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment