Does anyone know why this alias isn't working?
alias tailsed="tailf error.log | sed -e 's/\\n/\n/g' -e 's/\\t/''/g'"
I've tried replacing the single quotes with doubles so that it's like:
alias tailsed='tailf error.log | sed -e "s/\\n/\n/g" -e "s/\\t/""/g"'
But the piped command still doesn't parse correctly like it does when it is run alone.