This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Привязка файлов *.os к oscript.exe | |
// Запуск скриптов *.os из командной строки без указания расширения | |
// (с) awa, 2015 | |
#Использовать tempfiles | |
Процедура Главная() | |
СистемнаяИнформация = Новый СистемнаяИнформация; | |
ОС = НРег(СистемнаяИнформация.ВерсияОС); | |
Если Найти(ОС, "windows") = 0 Тогда |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# simple installer for Ubuntu 14.04 https://bitbucket.org/EvilBeaver/1script/wiki/Home | |
echo 'Starting wgeter latest develops' | |
wget --continue http://oscript.io/downloads/night-build/latest.zip | |
unzip -o latest.zip -d osc-engine |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
////////////////////////////////////////////////////////////////////// | |
// | |
// Изменение remote для нескольких репозитариев GIT | |
// Copyright EvilBeaver <[email protected]> 2015 | |
// | |
////////////////////////////////////////////////////////////////////// | |
Перем СтарыйПрефикс; | |
Перем НовыйПрефикс; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//1. НЕ работает группировка Procedure/EndProcedure, Function/EndFunction | |
//2. Не опознаются ключевые слова "Not", "In", "False", "True" | |
//3. Не опознается объект CommandLineArguments (АргументыКоманднойСтроки) | |
//4. Не опознается метод Count() (Количество()) у массивов | |
//5. RunApp глотает кавычки: | |
//cmdLine = | |
//"C:\Snegopat 20\fossil.exe" clone "http://snegopat.ru:9004" "C:\Snegopat 20\repo\core.fossil" | |
// | |
//а командная строка процесса = | |
//"C:\Snegopat 20\fossil.exe" clone http://snegopat.ru:9004 C:\Snegopat 20\repo\core.fossil |
NewerOlder