Skip to content

Instantly share code, notes, and snippets.

@ssilekin
ssilekin / curl.md
Created April 24, 2019 08:44 — forked from subfuzion/curl.md
curl POST examples

Common Options

-#, --progress-bar Make curl display a simple progress bar instead of the more informational standard meter.

-b, --cookie <name=data> Supply cookie with request. If no =, then specifies the cookie file to use (see -c).

-c, --cookie-jar <file name> File to save response cookies to.

@ssilekin
ssilekin / img-optimize.sh
Created August 17, 2018 13:46
img-optimize
#!/bin/bash
#
# Оптимизация графики png и jpg с помощью утилит jpegoptim и optipng
# PNG пока выключил, т.к. слишком долго обрабатываются файлы, локально вообще повисло
#
cd /var/www/html/nestlebabyrunew/current/;
projectDir=`pwd -P`;
staticDir=/var/www/html/nestlebabyrunew/shared/htdocs/static;