Browse Source

Merge pull request #85 from lbonanomi/master

sterilize shell history
pull/86/head
@trimstray 5 years ago
committed by GitHub
parent
commit
74a1e358ae
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 19 additions and 0 deletions
  1. +19
    -0
      README.md

+ 19
- 0
README.md View File

@@ -1183,6 +1183,25 @@ column -c3 -s " " -t | \
sort -nr | nl | head -n 20 sort -nr | nl | head -n 20
``` ```


###### Sterilize bash history

```bash
function sterile() {
history | awk '$2 != "history" { $1=""; print $0 }' | egrep -vi "\
curl\b+.*(-E|--cert)\b+.*\b*|\
curl\b+.*--pass\b+.*\b*|\
curl\b+.*(-U|--proxy-user).*:.*\b*|\
curl\b+.*(-u|--user).*:.*\b*
.*(-H|--header).*(token|auth.*)\b+.*|\
wget\b+.*--.*password\b+.*\b*|\
http.?://.+:.+@.*\
" > $HOME/histbuff; history -r $HOME/histbuff;
}

export PROMPT_COMMAND="sterile"

```

###### Quickly backup a file ###### Quickly backup a file


```bash ```bash


Loading…
Cancel
Save