From ea9cef406d75a4b8e776a8b15cf9c3e14bcb7bf4 Mon Sep 17 00:00:00 2001 From: msglm Date: Fri, 27 Jan 2023 19:57:05 -0600 Subject: adding job considering script --- .local/bin/jobconsider | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100755 .local/bin/jobconsider diff --git a/.local/bin/jobconsider b/.local/bin/jobconsider new file mode 100755 index 0000000..68bef0c --- /dev/null +++ b/.local/bin/jobconsider @@ -0,0 +1,40 @@ +#!/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 + less "$consideringjob" + read -r -p "Are you interested? (y/n): " Choice + if [ "$Choice" = 'y' ] + then + mkdir /home/joybuke/Documents/"$USER"/Applying/"$(basename "$consideringjob")" + mv -v "$consideringjob" /home/"$USER"/Documents/Jobs/Applying/"$(basename "$consideringjob")" + elif [ "$Choice" = 'n' ] + then + rm "$consideringjob" + fi +fi + +while [[ "$numofjobs" -le "$1" ]] +do + less "$consideringjob" + read -r -p "Are you interested? (y/n): " Choice + if [ "$Choice" = 'y' ] + then + mkdir /home/joybuke/Documents/"$USER"/Applying/"$(basename "$consideringjob")" + mv -v "$consideringjob" /home/"$USER"/Documents/Jobs/Applying/"$(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 -- cgit v1.2.3