Existe-t-il un moyen standard d'inverser l'ordre de sortie d'une sortie de borne, c'est-à-dire:
~/Developer $ command0
-bash: comman0: command not found
~/Developer $ command2
-bash: command2: command not found
~/Developer $ command3
-bash: command3: command not found
~/Developer $
serait affiché comme:
~/Developer $
-bash: command3: command not found
~/Developer $ command3
-bash: command2: command not found
~/Developer $ command2
-bash: comman0: command not found
~/Developer $ comman0
Je pense que toujours avoir votre invite en bas est contre-intuitif un moyen plus efficace de présenter la sortie serait d'inverser l'ordre de sortie. Comment pourrais-je procéder pour l'implémenter? Plus précisément, où la partie de sortie du programme de terminal OSX définie?
bash
).