Berkeley CSUA MOTD:Entry 34472
Berkeley CSUA MOTD
 
WIKI | FAQ | Tech FAQ
http://csua.com/feed/
2025/04/03 [General] UID:1000 Activity:popular
4/3     

2004/10/31-11/1 [Computer/SW/Languages, Computer/SW/Unix] UID:34472 Activity:low
10/30   How do I prevent variable substitution within double quote in tcsh?
        The manual says I can quote it with backslash but the following
        does not work:  echo "\$ "
        \_ There is no way to prevent variable substitution within double
           quotes in tcsh.  Usually it's easiest to use single quotes;
           failing that, the best you can do is echo "foo"\$"bar".  --mconst
        \_ echo "blah"'$'"blah"
2025/04/03 [General] UID:1000 Activity:popular
4/3     

You may also be interested in these entries...
2012/7/19-11/7 [Computer/SW/Languages/C_Cplusplus] UID:54439 Activity:nil
7/19    In C or C++, how do I write the code of a function with variable
        number of parameters in order to pass the variable parameters to
        another function that also has variable number of parameters?  Thanks.
        \_ The usual way (works on gcc 3.0+, Visual Studio 2005+):
               #define foo(fmt, ...) printf(fmt, ##__VA_ARGS__)
           The cool new way (works on gcc 4.3+):
	...
2012/7/29-10/17 [Computer/SW/Languages] UID:54447 Activity:nil
7/23    Hey mconst, check this out:
        int main()
        {
            int i_value   = 16777217;
            float f_value = 16777217.0;
            printf("The integer is: %d\n", i_value);
	...
2012/7/23-29 [Computer/SW/Languages] UID:54443 Activity:nil
7/23    Hey mconst, check this out:
int main()
{
    int i_value   = 16777217;
    float f_value = 16777217.0;
    printf("The integer is: %d\n", i_value);
	...
2012/3/15-6/1 [Computer/SW/Languages, Computer/SW/OS/Windows] UID:54340 Activity:nil
3/15    Why does MS put double-quotes around the '8' in Windows Server 8, like
        the following?
        - Windows 8
        - Windows Server "8"
        \_ Because when they didn't do it, code didn't see the '\0'
           and went over?  Looks better than '8','\0' *shrug*
	...
2010/1/26-2/8 [Computer/HW/Memory] UID:53665 Activity:nil
1/26    What's a good motherboard I can get that will fit in a 1U
        case, with sata connectors, gig-e ethernet, and lots of
        slots for RAM?  I also don't want to have to use expensive
        double buffered RAM.  Can you tell I havne't bought a PC in
        years?  thanks.
        \_ Buy a mac. Haven't you heard? if you don't buy a Mac people
	...
2009/12/26-2010/1/19 [Computer/SW/Languages/Misc, Computer/SW/Graphics] UID:53604 Activity:nil
12/26   Hey you stupid web developers, stop making web sites with
        CONSTANT FONT SIZE and CONSTANT WIDTH/HEIGHT. Dumb ass
        graphics artist... please learn something about computers
        and usability!
        http://browsersize.googlelabs.com
        \_ "Stupid web-developers" is redundant. "Stupid" or
	...