79128365

Date: 2024-10-26 10:59:58
Score: 1.5
Natty:
Report link
#!/bin/bash

for file in $folder/*.docx $folder/*.doc $folder/*.pdf
do
    if [ -f $file ]
    then
        process "$file"
    fi
done
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: arcadius