mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-30 14:24:35 +08:00
10 lines
292 B
Fish
10 lines
292 B
Fish
|
function __fish_systemctl_automounts
|
||
|
if type -q systemctl
|
||
|
if __fish_contains_opt user
|
||
|
systemctl --user list-unit-files --no-legend --type=automount ^/dev/null | cut -f 1 -d ' '
|
||
|
else
|
||
|
systemctl list-unit-files --no-legend --type=automount ^/dev/null | cut -f 1 -d ' '
|
||
|
end
|
||
|
end
|
||
|
end
|