simp / inspec-profile-disa_stig-el7

InSpec Profile for the EL7 DISA STIG
Apache License 2.0
22 stars 46 forks source link

Updated the find command for V-72027 to filter by 'type -f' #71

Closed Bialogs closed 5 years ago

Bialogs commented 5 years ago

Closes #63

aaronlippold commented 5 years ago

It looks like type l returns symlinks

So a find ! -name . -prune -type l is one of the examples I found. We may want to tell find to grab all the finds and then prune?? the ones that are symlinks?

aaronlippold commented 5 years ago

https://askubuntu.com/questions/522051/how-to-list-all-symbolic-links-in-a-directory

Bialogs commented 5 years ago

So a find ! -name . -prune -type l is one of the examples I found. We may want to tell find to grab all the finds and then prune?? the ones that are symlinks?

prune didn't seem to work in EL so I've done ! -type l