... You can use the command ls --color You may add alias("ls", "ls --color"); in your startup file .chrc in Unix or _chrc in Windows in your home directory to...
is it possible in Ch professional to draw live-plots, like trends etc.. to plot online with the incoming data on screen ??? pls help.... regards: martin...
... Mobile-C ... Hi, thanx very much for your reply, but I still have a little question: do you know, when will ch 6.0 be available on the internet? I'm ...
... I wasn't clear, sorry. I want to control colors through my program for console output. With other scripting languages there are escape sequences that can...
... Do you know how a regular C program handle colored text output in a console? Ch has to be compatible with C. It will be helpful to integrate this feature...
I am using ch embedded within a (Solaris) system that does dynamic library loading. Part of the dynamic loading function looks up the environment variable...
Tom, You are right. When Ch_End() is called, all environment variables modified by scripts will be reset to NULL. In this case, LD_LIBRARY_PATH is modified by...
Doesn't this mean that ch isn't thread-safe? If I have one thread (not running ch) doing getenv("LD_LIBRARY_PATH") and a second thread that runs a ch script,...
I removed the part in chrc that sets LD_LIBRARY_PATH and modified it in my environment (outside ch) hoping the LD_LIBRARY_PATH would no longer be removed... to...
When environment variables are modified in one thread. the other threads will be affected. It is tricky. We are open for any suggestions you may have on how...
Make sure you commented LD_LIBRARY_PATH part code in your CHEMBED/config/chrc. In your case, it is CHHOME/toolkit/embedch/config/chrc. Also LD_LIBRARY_PATH is...
ls --color=auto is supposed to display directories in a different color, generally blue. Version 5.5 did this correctly. Version 6.0.0 does not display...
... Thanks for your quick checking of ls.exe issue in ch 6.0. The latest ls.exe supports windows 64 bit, however, the original ls.exe doesn't support 64 bit....
Hi, I've been reading the Ch and ChJava software, and it seems like what I need, but haven't found a single example online to verify (one that's interactive,...
In the previous version... grep -l XX ./.../*.h would perform a recursive directory scan for all .h files. Version 6.0 gives the message Ch: grep -l XX...
... Here is the output from my system - Windows XP sp2. Ch: chver Ch Standard edition, version 6.0.0.13511 (C) Copyright 2001-2008 SoftIntegration, Inc. ...
You may use the '-r' option for recursive searching as shown below. C:/ch/include> grep -l -r time.h * aio.h mqueue.h sched.h sys/acct.h sys/resource.h ...
... That works correctly, thanks... However, the file mask can only be *. If in your example, C:/ch/include> grep -l -r time.h * the file mask is changed to...
... C:/ch/include> grep -l -r time.h *.h aio.h mqueue.h sched.h time.h utime.h C:/ch/include> it looks that recursive ends up in searching the current...
Hello, If you wish to recursively search files that match "*.h" for a string, try this command: find -name "*.h" | xargs grep "time\.h" This will search all...
CPlot plotType only seems to support a very limited set of colors for screen output, identified by an integer value. For example, the type PLOT_PLOTTYPE_LINES...
... Colors for different terminals and output might be different. You can try and find the colors of a specific terminal similar to Programs 23.15-23.18 in Ch...