Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 445 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 445 Bytes

ipkiss

[WIP] This command masks confidential/sensitive information (e.g. customer's mail address, name, etc...) from text files.

This command is a implementation of following bash function using awk.

function ipkiss() {
    awk 'BEGIN {FS=",";OFS=","} {$1="***"} {$5="***"} 1' "$filename"
}

Installation

go get github.com/abetar0/ipkiss

Author

Taro Abe (@abetar0)

License

MIT