aboutsummaryrefslogtreecommitdiffhomepage
path: root/init/completions/rm.fish
diff options
context:
space:
mode:
Diffstat (limited to 'init/completions/rm.fish')
-rw-r--r--init/completions/rm.fish11
1 files changed, 11 insertions, 0 deletions
diff --git a/init/completions/rm.fish b/init/completions/rm.fish
new file mode 100644
index 00000000..a8f8a94c
--- /dev/null
+++ b/init/completions/rm.fish
@@ -0,0 +1,11 @@
+#Completions for rm
+complete -c rm -s d -l directory -d "Unlink directory (Only by superuser)"
+complete -c rm -s f -l force -d "Never prompt before removal"
+complete -c rm -s i -l interactive -d "Prompt before removal"
+complete -c rm -s r -l recursive -d "Remove content of subdirectories"
+complete -c rm -s R -d "Remove content of subdirectories"
+complete -c rm -s v -l verbose -d "Explain what is done"
+complete -c rm -s h -l help -d "Display help and exit"
+complete -c rm -l version -d "Display version and exit"
+
+