mirror of
https://github.com/inspec/inspec
synced 2024-11-10 15:14:23 +00:00
c1660e8568
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
8 lines
No EOL
367 B
Bash
Executable file
8 lines
No EOL
367 B
Bash
Executable file
#!/bin/bash
|
|
|
|
fgrep 'Inspec.deprecate' -r lib |cut -f2 -d'(' | cut -f1 -d',' | cut -f1 -d ')' | cut -f2 -d':' | sort -u > inspec-deprecations-in-lib.txt
|
|
jq -r '.groups|keys|.[]' < etc/deprecations.json | sort -u > inspec-deprecations-in-cfg.txt
|
|
|
|
echo '<< Only in cfg'
|
|
echo ' >> Only in lib/'
|
|
comm -3 inspec-deprecations-in-cfg.txt inspec-deprecations-in-lib.txt |