Eu realmente não sei, mas minha tentativa até agora
history | awk '!x[<everything except first column which is the order>]++' | sort -r
Responder1
Precisa estar estranho?
history | tail -n 50 | sort -r -n | cut -d " " -f4- | sort -u
basicamente
- Histórico de classificação reversa usando o prefixo numérico
- Remover espaços
- Remover números iniciais
- Remover duplicatas
Alternativamente, você pode fazer o seguinte com base nestepergunta respondida anteriormente
history | sort -rn | sed -e 's/ *[0-9][0-9]* *//' | uniq | less