11 lines
228 B
Bash
11 lines
228 B
Bash
#!/bin/bash
|
|
|
|
python3 /app/arxiv_daemon.py --num 100
|
|
|
|
if [ $? -eq 0 ]; then
|
|
echo "New papers detected! Running compute.py"
|
|
python3 /app/compute.py
|
|
else
|
|
echo "No new papers were added, skipping feature computation"
|
|
fi
|