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