mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 03:51:23 +08:00
976ce1e8fd
Work on #2141.
7 lines
185 B
Fish
7 lines
185 B
Fish
function __fish_print_debian_apache_confs
|
|
# Helper script for completions for a2enconf/a2disconf
|
|
for conf in /etc/apache2/conf-available/*.conf
|
|
basename "$conf" .conf
|
|
end
|
|
end
|