fork download
  1. for file in *; do
  2. if [ -f "$file" ] && [ -r "$file" ] && [ -w "$file" ] && [ -x "$file" ]; then
  3. echo "$file"
  4. fi
  5. done
  6.  
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
Standard output is empty