Initial commit with translated description

This commit is contained in:
2026-03-29 13:19:42 +08:00
commit 02636af205
3 changed files with 50 additions and 0 deletions

6
scripts/search_arxiv.sh Normal file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/env bash
# scripts/search_arxiv.sh
QUERY=$1
COUNT=${2:-5}
# Use curl to query ArXiv API
curl -sL "https://export.arxiv.org/api/query?search_query=all:$QUERY&start=0&max_results=$COUNT&sortBy=submittedDate&sortOrder=descending"