We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fdfe45b + b2a194f commit 35f55e6Copy full SHA for 35f55e6
contrib/completions/bash/runc
@@ -289,6 +289,22 @@ _runc_pause() {
289
esac
290
}
291
292
+_runc_ps() {
293
+ local boolean_options="
294
+ --help
295
+ -h
296
+ "
297
+
298
+ case "$cur" in
299
+ -*)
300
+ COMPREPLY=( $( compgen -W "$boolean_options $options_with_args" -- "$cur" ) )
301
+ ;;
302
+ *)
303
+ __runc_list_all
304
305
+ esac
306
+}
307
308
_runc_delete() {
309
local boolean_options="
310
--help
@@ -744,6 +760,7 @@ _runc() {
744
760
kill
745
761
list
746
762
pause
763
+ ps
747
764
restore
748
765
resume
749
766
run
0 commit comments