diff options
Diffstat (limited to 'lib/_ak_fm')
-rwxr-xr-x | lib/_ak_fm | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -4,12 +4,12 @@ _ak_fm_remove_line_from_file(){ tempfile="$(mktemp)" if [ ! -f "$2" ] then - logit "ERROR" "$2 does not exist" + _ak_log_error "$2 does not exist" exit 1 fi grep "$1" "$2" > /dev/null 2>&1 if [ $? -ne 0 ] - logit "ERROR" "Could not find line: $1 in $2" + _ak_log_error "Could not find line: $1 in $2" exit 1 fi grep -v "$1" "$2" > $tempfile @@ -20,13 +20,13 @@ _ak_fm_remove_line_from_file(){ _ak_fm_sort_uniq_file(){ if [ ! -f "$1" ] then - logit "INFO" "No file to process" + _ak_log_info "No file to process" else - logit "INFO" "Sorting $1..." + _ak_log_info "Sorting $1..." tempfile="$(mktemp)" cat "$1" | sort | uniq > $tempfile cat $tempfile > $1 rm $tempfile - logit "INFO" "Sorting $1... Done!" + _ak_log_info "Sorting $1... Done!" fi } |