From a032121b9b6d873fa2c003adb23a3abfda7d1f40 Mon Sep 17 00:00:00 2001 From: John Southworth Date: Mon, 17 Oct 2011 14:14:33 -0500 Subject: Make directory completions, if it is the first word of a run completion, work so that users can easily find scripts they may be trying to run. --- functions/interpreter/vyatta-cfg-run | 3 +++ 1 file changed, 3 insertions(+) (limited to 'functions/interpreter') diff --git a/functions/interpreter/vyatta-cfg-run b/functions/interpreter/vyatta-cfg-run index 52b5b08..52a264a 100644 --- a/functions/interpreter/vyatta-cfg-run +++ b/functions/interpreter/vyatta-cfg-run @@ -319,6 +319,9 @@ vyatta_config_run () fi if [[ "set" =~ "$1" ]]; then _vyatta_op_run "$@" + elif [[ "$1" =~ "/" ]]; then + local args=("$@") + ${args[0]} "${args[@]:1}" else /opt/vyatta/bin/vyatta-op-cmd-wrapper "$@" fi -- cgit v1.2.3