mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 01:17:45 +00:00
976ce1e8fd
Work on #2141.
6 lines
181 B
Fish
6 lines
181 B
Fish
function __fish_print_debian_apache_sites
|
|
# Helper script for completions for a2ensite/a2dissite
|
|
for site in /etc/apache2/sites-available/*
|
|
basename "$site" .conf
|
|
end
|
|
end
|