Search Results

Search: Posts Made By: kiruthika_sri
Forum: Programming 03-18-2010
6,642
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,326
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,966
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,145
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,700
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,877
Posted By kiruthika_sri
stat *.jpg | sed -rn '/(File:|Size:)/p'
stat *.jpg | sed -rn '/(File:|Size:)/p'
Forum: Programming 03-08-2010
3,122
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,645
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,909
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,556
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,323
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,454
Posted By kiruthika_sri
sed 's/[ \|]/\n/g' | sed -n...
sed 's/[ \|]/\n/g' | sed -n 's/clid=\([0-9]*\)/\1/gp'
30,662
Posted By kiruthika_sri
ulimit -a
ulimit -a
28,356
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,997
Posted By kiruthika_sri
rename 's/\.txt/\.dat/' *
rename 's/\.txt/\.dat/' *
9,832
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,058
Posted By kiruthika_sri
grep -RH "'search'" *
grep -RH "'search'" *
22,275
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,171
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 09:21 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy