Fix error on FreeBSD with process substitution

This commit is contained in:
Nicolai Skogheim 2015-07-28 20:41:53 +02:00
parent 20e6455559
commit cdb773c065

View file

@ -35,7 +35,7 @@ show_cursor_and_cleanup() {
# #
active_days() { active_days() {
uniq <(echo "$1") | wc -l uniq <<<$(echo "$1") | wc -l
} }
# #