11 lines
281 B
Bash
Executable File
11 lines
281 B
Bash
Executable File
#!/bin/bash
|
|
|
|
P=${P:-0}
|
|
sections=(featured-stories world us society insight jewish-problem race-war)
|
|
#sections=(society insight jewish-problem race-war)
|
|
#sections=(insight jewish-problem race-war)
|
|
for s in ${sections[@]} ; do
|
|
touch log/$s.seen
|
|
bin/scan -p $P -t section $s
|
|
done
|