We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wget
curl
macOS はデフォルトで cURL(v7.64.1)が入っているので、curl で組みました。しかし、Linux の場合は wget がデフォのものが大半だと思います。
別途 curl を入れればいいだけなのですが、openssl 以外はなるべくインストールをさせたくありません。
openssl
特に、最新の安定版 Alpine Linux の Docker イメージはデフォルトで wget が入っているので、微々たるものですが、wget でも動くようにしたい。
The text was updated successfully, but these errors were encountered:
メモ:
POSIXコマンドチートシート(を作る)を参考にすると
if type wget >/dev/null 2>&1; then CMD='wget -nv -O -' elif type curl >/dev/null 2>&1; then CMD='curl -s' elif type fetch >/dev/null 2>&1; then CMD='fetch -q -o -' else printf '%s: No HTTP-GET command found.\n' "${0##*/}" 1>&2 exit 1 fi
こんな感じのようです。
fetch とか、あんまり見たことがないコマンドですが。
fetch
Sorry, something went wrong.
でた!type! w やはり分岐が一番ですよね。
type
確かに。使ってる人は相当フェチなんでしょうか。 Macintosh 時代に fetch ってアプリを見かけたっきりっすよ。
6d0cf1e
yoshi389111
No branches or pull requests
wget
でも動くようにmacOS はデフォルトで cURL(v7.64.1)が入っているので、
curl
で組みました。しかし、Linux の場合はwget
がデフォのものが大半だと思います。別途
curl
を入れればいいだけなのですが、openssl
以外はなるべくインストールをさせたくありません。特に、最新の安定版 Alpine Linux の Docker イメージはデフォルトで
wget
が入っているので、微々たるものですが、wget
でも動くようにしたい。The text was updated successfully, but these errors were encountered: