mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-13 10:39:53 +08:00
5 lines
97 B
Bash
Executable File
5 lines
97 B
Bash
Executable File
#!/bin/bash
|
|
echo -n "data:,"
|
|
cat $1 | tr '\n' '*' | sed -e 's/*/%0A/g' | sed -e 's/ /%20/g'
|
|
echo
|