Arxiv_selector.pl is a perl script that visits the arxiv.org website and finds the newly published papers that contain at least one of the provided keywords. The script saves the details of each selected paper into a new html file, adds an entry with a link to this file into and index page, adds all selected papers into another html file that contains all selected papers for the current year and sends an e-mail to the user with the results and the links. In order for this script to run everyday a crontab job has to be installed. For this, type: crontab -e press "i" and add the following line: 00 06 * * * /link/to/Arxiv_selector.pl With the above crontab job the script will run everyday at 06:00 local time. The requirements of this script are: 1. File keywords.txt: This file contains a list of keywords Each keyword is given in one line. The list can be unlimited. Words or sentences can be used as keywords. The script will search for the full word or sentence. The keywords can be changed anytime. 2. File emailTO.txt: This file contains the e-mail address to which the result of the search will be sent everyday. 3. File emailFROM.txt: This file contains the e-mail address to be shown as the sender of the e-mail. ***IMPORTANT*** The user has to change the link in line 11 of the Arxiv_selector.pl: $html = "http://www.ari.uni-heidelberg.de/mitarbeiter/simos/Arxiv/"; to what it is appropriate. This link should point to the folder where all files exist and should be accessible from the web. Also, the user has to change the path in line 12 of the Arxiv_selector.pl: $path = "/webserver/mitarbeiter/simos/Arxiv"; to the path where the script is located. All files will be created in this path. Also, you might also want to check if sendmail is located in /usr/sbin. If it is located somewhere else, please provide the correct path into line 244. Steps: 1. Copy the files into your personal folder where you have your html pages. 2. Change keywords.txt, emailTO.txt and emailFROM.txt to what is appropriate. If you don't want to receive e-mails, leave them blank or insert some nonsense. 3. Install the cron job. 4. Wait and check your e-mail or webpages. Every day one webpage will be created and another two will be updated. i.The arxiv_*date*.html page is created and contains all the new papers that contain at least one of the provided keywords. Those pages are located inside a folder with the current year's name. ii.The index*year*.html contains a calendar with links to the arxiv_*date*.html's that have been created up to now. The font size for each link depends on the number of keywords matched (the higher the number, the larger the fonts). Newest links are added on the top of the page. iii.The *year*.html file contails all the papers of the year until the current day. It is a superposition of all arxiv_*date*.html files. This can be used for searching in all the papers of the year that match the keywords. Latest entries are added on the top of the page. For questions and suggestions or anything else please contact simos_AT_ari.uni-heidelberg.de