mirror of
https://git.ari.lt/ari.lt/ari.lt.git
synced 2025-02-04 17:49:24 +01:00
eea543fe09
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
12 lines
191 B
Bash
Executable file
12 lines
191 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
set -e
|
|
|
|
main() {
|
|
for api in api/*; do
|
|
api_cont="$(sed 's/^\s*//g; s/: /:/g' "$api" | tr -d '\n')"
|
|
printf '%s' "$api_cont" >"$api"
|
|
done
|
|
}
|
|
|
|
main "$@"
|