mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-25 09:39:52 +08:00
976ce1e8fd
Work on #2141.
7 lines
180 B
Fish
7 lines
180 B
Fish
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
|