From 0d05ef1e12314985988e567ac22a179d0f646899 Mon Sep 17 00:00:00 2001 From: msglm Date: Sat, 14 Jan 2023 10:33:04 -0600 Subject: Inital Commit --- .local/bin/joblook | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100755 .local/bin/joblook (limited to '.local/bin/joblook') diff --git a/.local/bin/joblook b/.local/bin/joblook new file mode 100755 index 0000000..a17dd2d --- /dev/null +++ b/.local/bin/joblook @@ -0,0 +1,38 @@ +#!/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 -- cgit v1.2.3