Anybody could explain this:
On Sun 10, CC version is Sun C++ 5.7 2005/01/07
I have this code:
string mystr("ABC"), ss("123");
mystr.append("XYZ" + ss);
The compiler doesn't print any warning on append() line, but indeed this is a bug I am currently suffering, could anybody know how the Sun's...
Hello,
Anyone knows how to disable colored text displayed on xterm window screen? I hate that color making me hard to read when front and background color are similar.
For example, when I run "ls" shell command, the color for directory is dark blue, but my background color is black, it's...
compile following code is OK:
<code>
class MyClass
{
public:
int i;
};
void f(MyClass *& mc) {;}
int main()
{
f(new MyClass);
return 0;
}
</code>
but the following is not OK, why?
<code>
class MyClass
{
public:
int i;
};
void f(MyClass *& mc) {;}
int main()
{
MyClass m...
Currently I am working on AIX/SUN/HP with tcsh,
set prompt = "%{\033[7m>>\033[m%} "
it will highlight the prompt, but there is a side effect on SUN, when I edit command line with cursor keys and backspace key, the command line is massed up.
Anyone has a good solution?
Thanks
does tcsh support "escape sequence" on Solaris and Aix?
I've tested the following on Solaris and Aix, didn't work:
Function: change xterm's title:
>> echo "\033]0;TITLE\007"
\033]0;TITLE\007
>> echo "\e]0;TITLE\007"
\e]0;TITLE\007
>> echo "^e]0;TITLE\007"
^e]0;TITLE\007
>> echo "
>> echo...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.