Answers for "pattern matching alias linux"

0

pattern matching alias linux

command_not_found_handle() {
  local cmd_str

  # change the argument-list array back to a string
  printf -v cmd_str '%q ' "$@"

  # process that string:
  case $cmd_str in
    "git@"*".git") eval "git clone $cmd_str" ;;
    *) echo "No alternative for command found" >&2; return 1 ;;
  esac
}
Posted by: Guest on May-27-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language