mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-25 12:21:14 -03:00
8 lines
220 B
Fish
8 lines
220 B
Fish
# localization: skip(private)
|
|
function __fish_print_debian_apache_mods
|
|
# Helper script for completions for a2enmod/a2dismod
|
|
for mod in /etc/apache2/mods-available/*.load
|
|
basename "$mod" .load
|
|
end
|
|
end
|