Esiste un modo standard per invertire l'ordine di uscita di un'uscita terminale, ovvero:
~/Developer $ command0
-bash: comman0: command not found
~/Developer $ command2
-bash: command2: command not found
~/Developer $ command3
-bash: command3: command not found
~/Developer $
sarebbe visualizzato come:
~/Developer $
-bash: command3: command not found
~/Developer $ command3
-bash: command2: command not found
~/Developer $ command2
-bash: comman0: command not found
~/Developer $ comman0
Sento che avere sempre il tuo prompt in fondo è contro intuitivo, un modo più efficace di presentare l'output sarebbe quello di invertire l'ordine di output. Come potrei fare per implementarlo? In particolare, dove è stata definita la parte di output del programma terminale OSX?
bash
.).