===================================================================== PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND. If you post one,...
linux-bangalore-progr...
linux-bangalore-progr...
Sep 1, 2005 2:42 pm
6837
If you are posting to this list, and your messages aren't appearing, check the following: 1. Did you top-post? Top posting is when you type your reply above...
i have an embedded system board <link> http://www.allwell.tv/Products/Set_Top_Box/STB1030_3036/stb1030_3036.html</link> but the processor running is an cyrix...
... http://www.allwell.tv/Products/Set_Top_Box/STB1030_3036/stb1030_3036.html</link> ... ......................... I am a complete dumbass in Embedded stuff,...
===================================================================== PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND. If you post one,...
linux-bangalore-progr...
linux-bangalore-progr...
Sep 11, 2005 1:22 pm
6841
Hi all I have download GNU/coreutil package for some of my project. In that I am required to make changes to only a single code file( .c). But after making ...
All: The official Call for Participation for FOSS.IN/2005 is now available on the website: http://foss.in/2005/cfp Speaker and other content-related...
Hi, I wanted to know a concept regarding process IDs. Suppose there is a process....it will have a unique process ID, and when the process gets terminated, the...
... Process IDs are incremented, so they will usually remain unique. However, for compatibility with older apps, process id space is only 16 bits (15 bits?)....
Hi, According the coding practices in C++, we should put all inline function definitions in "*.icc" files. But how do I compile these "*.icc" files? When i try...
All: The Speaker Registration System for FOSS.IN/2005 is now open, and can be found at http://foss.in/2005/speakers/ Before registering yourself as a speaker...
===================================================================== PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND. If you post one,...
linux-bangalore-progr...
linux-bangalore-progr...
Sep 25, 2005 2:15 pm
6852
I am looking for the book Code Reading: The Open Source Perspective by Diomidis Spinellis (http://www.spinellis.gr/codereading/), but havent been successful...
Hi, I have a text file like this line1 line2 line3 .. .. lineX I want it to convert like this line1 line2 line3 .. .. lineX What is syntax for this conversion...
... Easy.. in vi, in command mode say XJ, where X is the number of lines Regards, Kiran Kumar Immidi __________________________________ Yahoo! Mail - PC...
... [snip] ... do this on the command line: echo `cat filename.txt` -- Only a fool fights in a burning house. -- Kank the Klingon, "Day of the Dove", stardate...
... [ysawant@asteroid ysawant]$ cat numeric_file one two three four [ysawant@asteroid ysawant]$ perl -i -pe 's/\n//g' numeric_file [ysawant@asteroid ysawant]$...
i want to do certain operations over a file using vi editor like : 1) search <abc123> string. 2) copy 4 lines from there onwards 3) serach <xyz123> in the same...
Pradeep Goyal
csclin01@...
Sep 28, 2005 10:25 pm
6859
one more simple way: cat <fileName> | xargs thanks pardeep [Non-text portions of this message have been removed]...
Pradeep Goyal
csclin01@...
Sep 28, 2005 10:30 pm
6860
... If you need to do this on 200 files, wouldn't it make more sense to use a scripting language like sed or perl for this? -- Push where it gives and scratch...
... Here is an inefficient script that will do the job for u. You might have to add some checks for eof. Use the script as "scriptname <filename> <abc123>...
bharat krishnamurthy
bharat@...
Sep 29, 2005 5:05 am
6862
hi all, i am very bad in programming. But please take your time to answer these questions if you know the answers. I would really appreciate it. Under *Unix...
Pradeep Goyal
csclin01@...
Sep 29, 2005 5:59 am
6863
... The first is a newline character, the second is a carriage return. Windows text files have a "\r\n" for line endings, Unix text files only have a "\n"....
... I think you can do it easily using q comand in Vim. You can open all the files that need to be changed using vim * in the directory containing the files. ...