A command line utility to manage
text/number/email/password/address/notewith Alias to easy recall & copy to clipboard.
Let me explain what is a 0 something?
The a command maps an alias to the text that persists on disk; Also copy the text to clipboard. This command takes max two arguments. First arugument for alias and second for text.
a 0 something # Command `a` maps alias `0` with text `something`; Added text to clipboard.
# alias: 0
# text: somethingOnce alias is assignned to the text, a just need alias to read associated text from disk; Also copy same text to clipboard.
a 0 # Command `a` returns text `something` as it was mapped with alias `0` earlier; Added text to clipboard.
# alias: 0
# text: somethingStore once and use later by refilling clipboard through executing this command.
You can use it directly from the CLI:
deno run --allow-env --allow-run --allow-read --allow-write https://deno.land/x/a0/cli.ts <alias> <text>
# alias: <alias>
# text: <text>
deno run --allow-env --allow-run --allow-read --allow-write https://deno.land/x/a0/cli.ts <alias>
# alias: <alias>
# text: <text>deno install --allow-env --allow-run --allow-read --allow-write -f -n a https://deno.land/x/a0/cli.tsThen, the package is available as command a to run:
a <alias> <text>
a <alias>a pass user1Password
# alias: pass
# text: user1Passworda pass
# alias: pass
# text: user1Passworda pass changedUser1Password
# alias: pass
# text: changedUser1PasswordRequired permissions:
allow-envallow-runallow-readallow-write
Tested only for MAC.
- Allow one space between words for second arugument 'text'
- Delete Alias
- Store encrypted text
- Testing on Windows & Linux