This file contains hidden or 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
# Add at the end of your ~/.bashrc file this content: | |
# Run Windows Programs (.exe) from WSL as Fallback without extension | |
eval "$(echo "orig_command_not_found_handle()"; declare -f command_not_found_handle | tail -n +2)" | |
command_not_found_handle() | |
{ | |
cmd=$1 | |
shift | |
args=( "$@" ) |
NewerOlder