Files
dotfiles/.bash/shell/complete-alias/tests/test_quotes_option.sh
2026-04-21 11:19:45 +02:00

15 lines
431 B
Bash

#!/bin/bash
## ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
## test quoted command in alias body; complete with option;
##
## . test_quotes_option.sh
## test_quotes_option <tab>
##
## ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
complete -u '"/tmp/aaa bbb"'
alias test_quotes_option='"/tmp/aaa bbb"'
complete -F _complete_alias test_quotes_option