OS: Linux RedHat
Bash: 3.5
I have 2 commands below to get list of files with status of them and another command for footprint. I want to find the way to combine them together in single line.
Here's my mentioned commands.
find "$PWD" -type f ! -iname '*thumbs.db*' -print0 | xargs -0 stat -c "%y %s %n"find "$PWD" -type f -print0 | xargs -0 sha1sum -b