Getting bash output history

I am using Mac OSX and I am looking for a command that fetches the history of the exits (when they exist) from the commands I have run. Is it possible?

+3


source to share


1 answer


I think Bash only contains the history of the commands entered. You can get it by entering "history". But I don't think Bash stores the output of these commands anywhere, it should be a function of your terminal emulator.



+6


source







All Articles