Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
igops authored Apr 3, 2024
1 parent 7713c4f commit fa5b6c3
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,23 @@
# 64links.github.io
# 64 links
### Create a permanent link to your short message without transferring any byte!

E.g., classic `Hello, world!` greeting has the following link: https://64links.github.io/u/#SGVsbG8sIHdvcmxkIQo%3d

### Creating a link on Mac OS X
```shell
echo 'My awesome message' \
| base64 \
| sed -e 's/+/%2b/g' -e 's/\//%2f/g' -e 's/=/%3d/g' \
| awk '{print "https://64links.github.io/u/#"$1}'
```

### Creating a link on Linux
```shell
echo 'My awesome message' \
| base64 -w 0 \
| sed -e 's/+/%2b/g' -e 's/\//%2f/g' -e 's/=/%3d/g' \
| awk '{print "https://64links.github.io/u/#"$1}'
```

### Creating a link on Windows
TODO

0 comments on commit fa5b6c3

Please sign in to comment.