#!/bin/bash #Description: Looks into your JOBDIR folders for jobs you marked as considering, presents them to you for research, then asks your opinion on them. #Axioms: JOBDIR #Dependencies: joblook numofjobs=1 consideringjob="$(find /home/"$USER"/Documents/Jobs/Considering -maxdepth 1 -type f | shuf | head -1)" if [[ $# = 0 ]] then grep "URL : " "$consideringjob"|sed -e 's/URL : //g'|xargs xdg-open read -r -p "Are you interested? (y/n): " Choice if [ "$Choice" = 'y' ] then mkdir /home/"$USER"/Documents/Jobs/Applying/"$(basename "$consideringjob" .txt)" mv -v "$consideringjob" /home/"$USER"/Documents/Jobs/Applying/"$(basename "$consideringjob" .txt)"/"$(basename "$consideringjob")" elif [ "$Choice" = 'n' ] then rm "$consideringjob" fi fi while [[ "$numofjobs" -le "$1" ]] do grep "URL : " "$consideringjob"|sed -e 's/URL : //g'|xargs xdg-open read -r -p "Are you interested? (y/n): " Choice if [ "$Choice" = 'y' ] then mkdir /home/"$USER"/Documents/Jobs/Applying/"$(basename "$consideringjob" .txt)" mv -v "$consideringjob" /home/"$USER"/Documents/Jobs/Applying/"$(basename "$consideringjob" .txt)"/"$(basename "$consideringjob")" elif [ "$Choice" = 'n' ] then rm "$consideringjob" fi consideringjob="$(find /home/"$USER"/Documents/Jobs/Considering -maxdepth 1 -type f | shuf | head -1)" numofjobs=$numofjobs+1 done