diff options
Diffstat (limited to '.local/bin')
-rwxr-xr-x | .local/bin/jobconsider | 40 |
1 files changed, 40 insertions, 0 deletions
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 |