yage
96992e9344
===================================================================== --- New Scripts -------------------------- zsh ) latex + latex template engine - latex/build-pdf - latex/cleanup - latex/create-new - latex/get-pdf - latex/open-pdf beta SQL script -- got tired of floating this; works, but only OK - db/run-sql/postgres --- Changes ------------------------------ - Added 'math', 'basic', and 'times-new-roman' templates to latex - Added 'readlink' to list of required coreutils - Added __INPUT to read into a variable with prompt (zsh/utils/io) - Added $EXECUTION_DIR to interact with the user's working directory --- Bug Fixes ---------------------------- - subscwrypts no longer force stdout/stderr to tty
21 lines
617 B
Bash
Executable File
21 lines
617 B
Bash
Executable File
#!/bin/zsh
|
|
_DEPENDENCIES+=()
|
|
_REQUIRED_ENV+=()
|
|
source ${0:a:h}/common.zsh
|
|
#####################################################################
|
|
|
|
CLEAN_LATEX_LOGFILES() {
|
|
local DIRECTORY=$(__GET_PATH_TO_RELATIVE_ARGUMENT ".")
|
|
[ $1 ] && DIRECTORY="$(dirname "$(GET_MAIN_LATEX_FILENAME "$1")")"
|
|
[ $DIRECTORY ] && [ -d $DIRECTORY ] \
|
|
|| __FAIL 1 'unable to parse valid directory'
|
|
|
|
cd $DIRECTORY
|
|
rm $(ls | grep '\.\(aux\)\|\(log\)\|\(pdf\)\|\(out\)\|\(dvi\)$')
|
|
|
|
__SUCCESS "cleaned up latex artifacts in '$DIRECTORY'"
|
|
}
|
|
|
|
#####################################################################
|
|
CLEAN_LATEX_LOGFILES $@
|