Skip to content

Instantly share code, notes, and snippets.

@melchisedech333
Created August 12, 2022 03:31
Show Gist options
  • Save melchisedech333/8b58d6d29890b7bbadc915ebe09e09e9 to your computer and use it in GitHub Desktop.
Save melchisedech333/8b58d6d29890b7bbadc915ebe09e09e9 to your computer and use it in GitHub Desktop.
Realiza correção de texto por linha de comando.
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