aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/__fish_print_debian_apache_sites.fish
blob: 08436a3efa1b8226301ec24cefdd468068f3434c (plain)
1
2
3
4
5
6
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