Skip to content
New issue

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

Изменение шаблона команды unix #53

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

Nivanchenko
Copy link

В ядре дотнета что низом идет под ос 2.0, что-то ужасное происходит с параметром в одинарных кавычках.
Если упростить, то вот такой код

СтрокаЗапуска = "sh -c 'oscript -version'";
РабочийКаталог = ".";
ПерехватыватьПотоки = Истина;
ПеременныеСредыПроцесса = Новый Соответствие();

Процесс = СоздатьПроцесс(СтрокаЗапуска, РабочийКаталог, ПерехватыватьПотоки, ПерехватыватьПотоки, , 
				ПеременныеСредыПроцесса);

Процесс.Запустить();
Приостановить(1000);
ОчереднаяСтрокаВывода = Процесс.ПотокВывода.Прочитать();
ОчереднаяСтрокаОшибок = Процесс.ПотокОшибок.Прочитать();

Сообщить(ОчереднаяСтрокаВывода);
Сообщить(ОчереднаяСтрокаОшибок);

сломается вот так:

-version': -c: line 0: unexpected EOF while looking for matching `''
-version': -c: line 1: syntax error: unexpected end of file

С двойными кавычками такой проблемы нет.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant