mask-pii for Bash

Bash साठी mask-pii अंमलबजावणी: logs आणि data pipelines मधील email/phone PII लपवण्यासाठी.

ईमेल लपवणे

Masks local parts while preserving domain visibility.

फोन लपवणे

Masks sensitive digits while keeping format and suffix visibility.

Builder-शैली API

Enable email/phone masking and mask character explicitly before processing.

स्थापित करा आणि सुरू करा

Bash [git-only: v0.2.0]: खालील सध्याची इंस्टॉलेशन पद्धत वापरा, Bash API लोड करा आणि किमान उदाहरण चालवा. उदाहरण ईमेल आणि फोन मास्किंग स्पष्टपणे सुरू करते आणि अपेक्षित आउटपुट दाखवते.

स्थापना

bpkg install finitefield-org/mask-pii/bash

Usage

example.sh
#!/usr/bin/env bash

source "$(bpkg prefix)/mask-pii/mask_pii.sh"

mask_pii_new masker
mask_pii_mask_emails masker
mask_pii_mask_phones masker
mask_pii_with_mask_char masker '#'

input='Contact: alice@example.com or 090-1234-5678.'
output=$(mask_pii_process masker "$input")

echo "$output"
# Contact: a####@example.com or ###-####-5678.
टीप

Please check the README for exact package ecosystem details and API examples for this language.