emlen Posted June 27, 2016 Share Posted June 27, 2016 Попытался сохранять в лог статусы запуска скриптов: for i in $(/opt/bin/find /opt/etc/init.d/ -perm '-u+x' -name 'S*' | sort $ORDER ) ; do case "$i" in S* | *.sh ) # Source shell script for speed. trap "" INT QUIT TSTP EXIT #set $1 #echo "trying $i" >> /tmp/rc.log . $i $ACTION $CALLER >> /tmp/rc.log ;; *) # No sh extension, so fork subprocess. $i $ACTION $CALLER >> /tmp/rc.log ;; esac done В итоге выходит [1;37m Starting i2pd... [1;32m done. [m [1;37m Starting dropbear... [1;32m done. [m [1;37m Starting bashbot.sh... [1;32m done. [m Вопрос - как избавиться от раскрашивающих символов при выводе в файл? Quote Link to comment Share on other sites More sharing options...
zyxmon Posted June 28, 2016 Share Posted June 28, 2016 Попытался сохранять в лог статусы запуска скриптов:Вопрос - как избавиться от раскрашивающих символов при выводе в файл? Вариантов вагон 1. Обработать вывод SED'ом 2. Написать свой вариант rc.unslung 3. Отредактировать rc.func Quote Link to comment Share on other sites More sharing options...
emlen Posted June 28, 2016 Author Share Posted June 28, 2016 Попытался сохранять в лог статусы запуска скриптов:Вопрос - как избавиться от раскрашивающих символов при выводе в файл? Вариантов вагон 1. Обработать вывод SED'ом 2. Написать свой вариант rc.unslung 3. Отредактировать rc.func мне бы одного конкретного хватило.. Quote Link to comment Share on other sites More sharing options...
Александр Рыжов Posted June 28, 2016 Share Posted June 28, 2016 мне бы одного конкретного хватило.. Так сделайте один конкретный. А если где-то что-то не выйдет, то обращайтесь, подскажем. Quote Link to comment Share on other sites More sharing options...
emlen Posted June 28, 2016 Author Share Posted June 28, 2016 мне бы одного конкретного хватило.. Так сделайте один конкретный. А если где-то что-то не выйдет, то обращайтесь, подскажем. ОК, а где лежит rc.func? И что в нем нужно редактировать?) Quote Link to comment Share on other sites More sharing options...
TheBB Posted June 28, 2016 Share Posted June 28, 2016 /opt/etc/init.d/rc.func там все и расписано... Quote Link to comment Share on other sites More sharing options...
emlen Posted June 28, 2016 Author Share Posted June 28, 2016 /opt/etc/init.d/rc.func там все и расписано... а как-то отловить выхлоп программы нельзя до того как его шелл раскрасит? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.