Computing.net: Question & Answers Forum Latest Questions

Computing Staff
  • 0
  • 0

I would like to list all my files like the following displaying filename, size, cksum displaying each one on a single line. Using awk, I can do this much so far: $ find Commands.txt -type f -printf “%f,%s\n” | awk -F “,” ‘ {cmd=”‘”`cksum`”‘” ...