Search Results

Search: Posts Made By: kiruthika_sri
Forum: Programming 03-18-2010
6,627
Posted By kiruthika_sri
I have just modified the single line in your...
I have just modified the single line in your program.
Try with the following code.

char *STRREVERSE(const char *STRING)
{
char *BUFFER = NULL;
BUFFER = (char *)realloc(BUFFER,...
1,311
Posted By kiruthika_sri
Not necessary to use same module in both server...
Not necessary to use same module in both server and client.
You can use different modules.
But sending and receiving a packet between server and client should be proper.

Even you can have server...
5,931
Posted By kiruthika_sri
try the following code: ...
try the following code:



open FH,"sum" or die $!; //Open the file 'sum'.
my %sum;
my @lines;
my $key;
my...
24,078
Posted By kiruthika_sri
You can achieve this using rename command also. ...
You can achieve this using rename command also.

rename 's/\.c$/\.h/' *
21,670
Posted By kiruthika_sri
These files are hidden files.And these files will...
These files are hidden files.And these files will be there under your home directory. If you want to check this put ls -a in your home directory else try with the find command like, find ~ -type...
1,876
Posted By kiruthika_sri
stat *.jpg | sed -rn '/(File:|Size:)/p'
stat *.jpg | sed -rn '/(File:|Size:)/p'
Forum: Programming 03-08-2010
3,116
Posted By kiruthika_sri
/* do not form a valid token in C.So the space is...
/* do not form a valid token in C.So the space is inserted between \ and *.

For more details refer the following link.

Why pre-processor gives a space ? - Stack Overflow...
8,600
Posted By kiruthika_sri
Is this you are expecting. ESC (0x1B, ^[)...
Is this you are expecting.

ESC (0x1B, ^[) starts an escape sequence;

For more details visit the following link
console_codes(4) - Linux man page (http://linux.die.net/man/4/console_codes)
...
4,887
Posted By kiruthika_sri
= is used to get the current line number. x is...
= is used to get the current line number.
x is used to exchange the contents of pattern space and hold space.

For more details refer the following link.

Sed's Commands...
7,537
Posted By kiruthika_sri
You add the statement , use lib PATH; before...
You add the statement ,
use lib PATH;
before the statement use Spreadsheet::ParseExcel in your code.
Here PATH is a location where the module Spreadsheet::ParseExcel is installed.
Example ...
25,254
Posted By kiruthika_sri
Visit the following link. LSST v1.05r3 >...
Visit the following link.

LSST v1.05r3 > Chapter 2 > echo Command (http://www.freeos.com/guides/lsst/ch02sec06.html)
9,432
Posted By kiruthika_sri
sed 's/[ \|]/\n/g' | sed -n...
sed 's/[ \|]/\n/g' | sed -n 's/clid=\([0-9]*\)/\1/gp'
30,596
Posted By kiruthika_sri
ulimit -a
ulimit -a
28,332
Posted By kiruthika_sri
While a background process is running shell...
While a background process is running shell doesn't wait for the completion
of execution.
But while running a foreground process shell waits until the completion of
execution.

And we can have...
1,991
Posted By kiruthika_sri
rename 's/\.txt/\.dat/' *
rename 's/\.txt/\.dat/' *
9,801
Posted By kiruthika_sri
The option -d in cut command is used to specify...
The option -d in cut command is used to specify the delimiter.
Here the delimiter is pipe character.But the character pipe has special meaning so we need to escape this character.
For escape the...
8,054
Posted By kiruthika_sri
grep -RH "'search'" *
grep -RH "'search'" *
22,166
Posted By kiruthika_sri
ls -lrt | grep '^l' It will list the...
ls -lrt | grep '^l'

It will list the symbolic links in a current directory.
4,159
Posted By kiruthika_sri
join file1 file2 >file4 join file3 file4 >...
join file1 file2 >file4
join file3 file4 > file3.out
Showing results 1 to 19 of 19

 
All times are GMT -4. The time now is 10:43 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy