Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spajai/mask-number-script
Perl Script to mask number from custom position and rules
https://github.com/spajai/mask-number-script
credit-card input linux mask masking ofuscate perl redactor script text
Last synced: 11 days ago
JSON representation
Perl Script to mask number from custom position and rules
- Host: GitHub
- URL: https://github.com/spajai/mask-number-script
- Owner: spajai
- License: apache-2.0
- Created: 2022-09-07T16:19:38.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-09-07T16:23:28.000Z (over 2 years ago)
- Last Synced: 2024-11-07T13:42:10.981Z (2 months ago)
- Topics: credit-card, input, linux, mask, masking, ofuscate, perl, redactor, script, text
- Language: Perl
- Homepage: https://github.com/spajai/mask-number-script
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mask-number-script
Perl Script to mask number from custom position and rules```
Number Mask Script v1.0,
used to mask the sensetive data from files ,
Options:,
--help print this usage msg,
--input_file full path of input_file to be masked,
--output_file full path of output_file to be masked,
--rules_file (optional)full path of rules file to be used note file must contain a hash of rules perl format
every hash value will be regex or code ref,
--start_position (optional)start position of the string to be replaced note will count from 0
default is 103,
--debug (optional) print debug messages,example:
perl mask_data.pl --input_file=/tmp/input.txt --output_file=/tmp/output.txt --rules_file=rules.txt
example2:
perl mask_data.pl --input_file=input.txt --output_file=output.txt,
```