7 lines
213 B
Bash
Executable file
7 lines
213 B
Bash
Executable file
#!/bin/bash
|
|
# Share a text file to shrlok.
|
|
cat <(printf '{"type":"txt"}\0') "$1" \
|
|
| socat - UNIX-CONNECT:/run/shrlok/shr.sock \
|
|
| sed 's|/var/www/files|https://files.dece.space|' \
|
|
; echo
|