shitbox/pkg/usr/share/nu/completions/swapoff.nu

15 lines
425 B
Plaintext
Raw Normal View History

2023-02-13 10:30:46 -05:00
module completions {
# disable devices and files for paging and swapping
export extern swapoff [
--all(-a) # Disable swapping on all known swap devices and files as found in /etc/fstab.
--verbose(-v) # output a diagnostic for every file processed
...device: string
--help(-h) # Print help
--version(-V) # Print version
]
}
use completions *