mirror of
https://github.com/kennethreitz-archive/usajobs-scraper.git
synced 2026-06-20 15:30:59 +00:00
8 lines
156 B
Bash
8 lines
156 B
Bash
#!/bin/bash
|
|
FILES="pages/*"
|
|
for f in "$FILES"
|
|
do
|
|
echo "Processing $f file..."
|
|
# take action on each file. $f store current file name
|
|
tidy $f > $f
|
|
done |