2.3 Вы не вправе пользоваться Службой и не вправе подтверждать свое согласие с Условиями, если (a) Вы не достигли возраста, с которого Вы можете заключать юридически обязывающий договор с YouTube, ...
... In any case, you affirm that you are over the age of 13, as the Service is not intended for children under 13. If you are under 13 years of age, then please do not use the Service. There are lots of other great web sites for you. Talk to your parents about what sites are appropriate for you.
Linux is a Unix clone written from scratch by Linus Torvalds with assistance from a loosely-knit team of hackers across the Net. It aims towards POSIX compliance.
$ch = curl_init();
curl_setopt_array( $ch, [
CURLOPT_POST => true,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POSTFIELDS => [
"file" => new CURLFile("/tmp/" . $tmpFileName) // путь к принятому файлу
],
CURLOPT_URL => "http://server-B.domain.com"
]);
curl_exec( $ch); // выполнить запрос
*/14
означает «каждые 14 минут», вернее, когда остаток от деления минут на 14 равен 0.0, 14, 28, 42, 56
минут каждого часа.*/
:14 * * * * python3 /home/G/script.py
14,28,42,56 * * * * python3 /home/G/script.py
at -f commands.sh now + 61 minutes
SQLDATE="2014-01-28 11:07:10"
# или
SQLDATE=`./check.sh`
DATE_SQL=`date --date="$SQLDATE" +"%s"`
DATE_NOW=`date +"%s"`
DATE_DIFF_MINUTES=$[ ($DATE_NOW - $DATE_SQL) / 60 ]
if [ $DATE_DIFF_MINUTES -gt 20 ]; then
# do stuff
fi
date --date="2014-01-28 11:07:10 +04:00"