Created
August 12, 2022 03:31
-
-
Save melchisedech333/8b58d6d29890b7bbadc915ebe09e09e9 to your computer and use it in GitHub Desktop.
Realiza correção de texto por linha de comando.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
content=`echo "animak" | aspell -l pt_br pipe --ignore-case --dont-backup --dont-save-repl | sed -n '2p'`; IFS=':'; read -a strarr <<< "$content"; content="${strarr[1]}"; IFS=','; read -a strarr <<< "$content"; content="${strarr[0]}"; content=`echo $content | sed -e 's/^[[:space:]]*//'`; echo "$content" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment