:~> echo 123456 | rev
654321
Deve funcionar. O uso é bem simples. do homem:
NAME
rev - reverse lines of a file or filesSYNOPSIS
rev [file ...]DESCRIPTION
The rev utility copies the specified files to the standard output, reversing the order of characters in every line. If no files are specified, the standard input is read.
Se não estiver disponível, você também deve poder usar awk
:
:~> echo 123456 | awk '{ for(i=length;i!=0;i--)x=x substr($0,i,1);}END{print x}'
654321
Fonte a escola unix
Se eventualmente precisar inverter completamente um arquivo, você pode adicionar a linha de comando tac
to rev
da seguinte forma:
tac myfile | rev