diff options
author | Runar Borge <runar@borge.nu> | 2018-06-23 23:32:47 +0200 |
---|---|---|
committer | Runar Borge <runar@borge.nu> | 2018-06-23 23:32:47 +0200 |
commit | ef15a3760a1d66543b8bda773748a78c8c05e99b (patch) | |
tree | 7ee193e6bf15e736dd46880752b938fb4b294457 /src/op_mode/show_configuration_files.sh | |
parent | 9b77c401bdd06230cceab7f3e37fc80958cfc72a (diff) | |
download | vyos-1x-ef15a3760a1d66543b8bda773748a78c8c05e99b.tar.gz vyos-1x-ef15a3760a1d66543b8bda773748a78c8c05e99b.zip |
T689: changed from dash to underscore in filenames
Diffstat (limited to 'src/op_mode/show_configuration_files.sh')
-rwxr-xr-x | src/op_mode/show_configuration_files.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/op_mode/show_configuration_files.sh b/src/op_mode/show_configuration_files.sh new file mode 100755 index 000000000..ad8e0747c --- /dev/null +++ b/src/op_mode/show_configuration_files.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +# Wrapper script for the show configuration files command +find ${vyatta_sysconfdir}/config/ \ + -type f \ + -not -name ".*" \ + -not -name "config.boot.*" \ + -printf "%f\t(%Tc)\t%T@\n" \ + | sort -r -k3 \ + | awk -F"\t" '{printf ("%-20s\t%s\n", $1,$2) ;}' |