Background: Powershell history is a lot more useful to me now that I have a way to save history across sessions.
// run this every time right before you exit powershell
get-history -Count $MaximumHistoryCount | export-clixml $IniFileCmdHistory;
Now, I'm trying to prevent bash powershell from saving duplicate commands to my history.
Question:
Does anyone out there have a lead on how to do this? I tried using Get-Unique, but that doesn't work since every command in the history is "unique" because each one has a different ID number.
