Last active
July 28, 2016 08:49
-
-
Save lnaia/81448a475889b18382994521892d0e24 to your computer and use it in GitHub Desktop.
Landing.jobs (https://landing.jobs) simple bash script to email you offers filtered according to your criteria.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Requires curl and jq | |
# sudo apt-get install curl jq | |
TEMP_OUTPUT="/tmp/.remote-jobs.json" | |
EMAIL_COMMAND="mail -s 'Landing.jobs Auto' [email protected]" | |
API="https://landing.jobs/api/v1" | |
echo -n > $TEMP_OUTPUT | |
for id in `curl -s $API/companies | jq '.[] | .id'`; do | |
curl -s "$API/companies/$id/offers.json" \ | |
| jq -c '.[] | select(.remote) | select(.work_from_home)| {type: .type, tags: .tags, url: .url}' >> $TEMP_OUTPUT | |
sleep 0.1 | |
done | |
cat $TEMP_OUTPUT | `$EMAIL_COMMAND` | |
# Sample output: | |
# {"url":"https://landing.jobs/at/webdetails-pentaho/java-devops-engineer","tags":["Apache Ivy","Continuous Integration","Git","Maven"],"type":"Full-time"} | |
# {"url":"https://landing.jobs/at/redlight-software/lead-web-developer-in-coimbra","tags":["HTML ","JavaScript","Lead"],"type":"Full-time"} | |
# {"url":"https://landing.jobs/at/maj-digital/php-back-end-developer-in-lisbon-2016","tags":["Agile Methodologies","Laravel","PHP","Test Driven Development","WordPress"],"type":"Full-time"} | |
# {"url":"https://landing.jobs/at/xpand-it/lead-android-developer-in-lisbon","tags":["Android Studio","Gradle","Java","RESTful APIs"],"type":"Full-time"} | |
# {"url":"https://landing.jobs/at/xpand-it/big-data-engineer-in-lisbon","tags":["HDFS","Hive","Mongo DB","NoSQL","Scala"],"type":"Full-time"} | |
# {"url":"https://landing.jobs/at/xpand-it/full-stack-senior-java-developer","tags":["AngularJS","Full stack","Java","Nodejs","Spring"],"type":"Full-time"} | |
# {"url":"https://landing.jobs/at/xpand-it/front-end-developer-in-lisbon-2016-6","tags":["AngularJS","React"],"type":"Full-time"} | |
# {"url":"https://landing.jobs/at/xpand-it/java-backend-developer-in-lisbon","tags":["Apache Tomcat","Jboss","MAVEN","Redhat"],"type":"Full-time"} | |
# {"url":"https://landing.jobs/at/xpand-it/microsoft-mobile-expert","tags":["Android","Git","iOS","Objective-C"],"type":"Full-time"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment