Search Criteria
Package Details: 1337 1.1-0
Package Actions
| Git Clone URL: | https://aur.archlinux.org/1337.git (read-only, click to copy) |
|---|---|
| Package Base: | 1337 |
| Description: | c0nv3r7 n0rm41 73x7 in70 1337 |
| Upstream URL: | https://code.obermui.de/6543/1337 |
| Keywords: | 1337 leet |
| Licenses: | GPL3+ |
| Submitter: | 6543 |
| Maintainer: | 6543 |
| Last Packager: | 6543 |
| Votes: | 1 |
| Popularity: | 0.000000 |
| First Submitted: | 2021-01-05 01:22 (UTC) |
| Last Updated: | 2021-10-14 06:19 (UTC) |
Latest Comments
micwoj92 commented on 2025-12-30 22:22 (UTC)
Unable to download:
6543 commented on 2021-10-13 14:55 (UTC)
nice ... will change it :)
jtpg commented on 2021-10-11 16:03 (UTC) (edited on 2021-10-11 16:03 (UTC) by jtpg)
you could've used tr for it
#/bin/bash
function 1337() {
echo $@ | tr '[:upper:]' '[:lower:]' | \
tr 'letaos' '137405' | \
sed 's/and\ /\&\ /g'
}
opt="$@"
[ -n "$opt" ] && 1337 "$opt" && exit
while read stdin; do
1337 "$stdin"
done