#!/bin/bash #Description: Looks into your JOBDIR's folders for potential jobs, presents them to you, then asks your opinion on them. #Axioms: JOBDIR #Dependencies: https://git.techchud.xyz/indeedwatcher numofjobs=1 potentialjob="$(find /home/"$USER"/Documents/Jobs/Potential -maxdepth 1 -type f | shuf | head -1)" if [[ $# = 0 ]] then less "$potentialjob" read -r -p "Are you interested? (y/n): " Choice if [ "$Choice" = 'y' ] then mv -v "$potentialjob" /home/$USER/Documents/Jobs/Considering/ elif [ "$Choice" = 'n' ] then rm "$potentialjob" fi fi while [[ "$numofjobs" -le "$1" ]] do less "$potentialjob" read -r -p "Are you interested? (y/n): " Choice if [ "$Choice" = 'y' ] then mv -v "$potentialjob" /home/$USER/Documents/Jobs/Considering/ elif [ "$Choice" = 'n' ] then rm "$potentialjob" fi potentialjob="$(find /home/"$USER"/Documents/Jobs/Potential -maxdepth 1 -type f | shuf | head -1)" numofjobs=$numofjobs+1 done