apt-get autoremove
dpkg -l | grep ^rc
dpkg -l | grep ^rc | awk '{printf $2}' | xargs dpkg --purge
=IMPORTRANGE("ключ-документа", "Лист1!A2:A12")
ssh user@host команда-для-удаленного-хоста
RESULT=$(ssh user@host команда-для-удаленного-хоста)
На Яндекс.Диск можно загрузить файл размером до 10 ГБ. Чтобы загружать большие файлы, рекомендуем пользоваться программой «Яндекс.Диск» или доступом по протоколу WebDAV (браузеры могут не справиться с файлами, чей размер превышает 2 ГБ).
Файлы размером больше 10 ГБ, нельзя загрузить на Диск. Если вы скопируете такой файл в папку Яндекс.Диска на вашем компьютере, он не будет синхронизирован.
There are two main reasons to avoid the use of .htaccess files.
The first of these is performance. When AllowOverride is set to allow the use of .htaccess files, httpd will look in every directory for .htaccess files. Thus, permitting .htaccess files causes a performance hit, whether or not you actually even use them! Also, the .htaccess file is loaded every time a document is requested.
Further note that httpd must look for .htaccess files in all higher-level directories, in order to have a full complement of directives that it must apply. (See section on how directives are applied.) Thus, if a file is requested out of a directory /www/htdocs/example, httpd must look for the following files:
/.htaccess
/www/.htaccess
/www/htdocs/.htaccess
/www/htdocs/example/.htaccess
And so, for each file access out of that directory, there are 4 additional file-system accesses, even if none of those files are present. (Note that this would only be the case if .htaccess files were enabled for /, which is not usually the case.)
if ($http_referer ~* (http://адрес-сайта-личера)) {
return 301 "http://хостинг-картинок.ru/img/some.png";
}