mirror of
https://github.com/kennethreitz-archive/usajobs-scraper.git
synced 2026-06-17 14:00:59 +00:00
7 lines
105 B
Bash
7 lines
105 B
Bash
#!/bin/bash
|
|
FILES="./pages/*"
|
|
for f in "$FILES"
|
|
do
|
|
echo "Processing $f file..."
|
|
tidy $f > output
|
|
done |