http -f https://envs.sh file@/path/to/file.xyz
http -f https://envs.sh url=https://domain.xyz/file.abc
echo supdawg | http -f --ignore-stdin https://envs.sh file@/file/stdin
import argparse | |
import resource | |
import aiohttp | |
import aiodns | |
import asyncio | |
from collections import Counter | |
import datetime |
const http = require('http'); | |
const {promisify} = require('util'); | |
http.get[promisify.custom] = function getAsync(options) { | |
return new Promise((resolve, reject) => { | |
http.get(options, (response) => { | |
response.end = new Promise((resolve) => response.on('end', resolve)); | |
resolve(response); | |
}).on('error', reject); | |
}); |
Create file /etc/systemd/system/[email protected]
. SystemD calling binaries using an absolute path. In my case is prefixed by /usr/local/bin
, you should use paths specific for your environment.
[Unit]
Description=%i service with docker compose
PartOf=docker.service
After=docker.service