Search Results

Search: Posts Made By: thegeek
10,857
Posted By thegeek
try this way ( doublequotes ) for F in...
try this way ( doublequotes )

for F in "$FILES"
1,598
Posted By thegeek
diskquota's are for storage space - secondary...
diskquota's are for storage space - secondary memory ( normally hard disk ). not for memory !!
3,090
Posted By thegeek
redirect stderr .. cp filea fileb...
redirect stderr ..

cp filea fileb 2>/dev/null
2,169
Posted By thegeek
use -r option to recursively copy directories.. ...
use -r option to recursively copy directories..

for more details, refer man scp
12,466
Posted By thegeek
if is a conditional statement not looping ! ...
if is a conditional statement not looping !

while, for are loop statements...
5,103
Posted By thegeek
Your second version processes each line of input...
Your second version processes each line of input one by one, but your first does not !

Because of this line ..

d=`sed 's/[0-9|.]* - [-|a-zA-Z]* \[\([0-9]*\/[a-zA-Z]*\/[0-9:]* [0-9+]*\)\]...
10,174
Posted By thegeek
alternatively you can use finddup also: Finddup -...
alternatively you can use finddup also: Finddup - Find duplicate files by content, name (http://finddup.sourceforge.net/usage.html)

Find the duplicate files by name
./finddup -n

Displays files...
1,589
Posted By thegeek
Finddup - Find duplicate files by content, name...
Finddup - Find duplicate files by content, name (http://finddup.sourceforge.net/)

./finddup
Displays files of the current directory which are all same by its content
Forum: Web Development 01-06-2011
2
1,216
Posted By thegeek
HTML Tutorial...
HTML Tutorial (http://www.w3schools.com/html/default.asp)
4,143
Posted By thegeek
Linux 101 hacks ebook: Linux 101 Hacks eBook –...
Linux 101 hacks ebook: Linux 101 Hacks eBook – Table of Contents (http://linux.101hacks.com/toc/)
2,432
Posted By thegeek
do some logging from the process... That is...
do some logging from the process...

That is by, adding print statement for PID and check whether it gets the correct PID. And the script has the required permissions to kill that process.
2,160
Posted By thegeek
Not an one liner, but, you can do this in two...
Not an one liner, but, you can do this in two steps.


# extract the required lines, and save in tmp file.

sed -n 20,200p file1 > file1.tmp


# extract the other required line, and diff....
19,440
Posted By thegeek
Frame the find command, as u require. find ...
Frame the find command, as u require.

find

Everywhere

/

Only directories ( if both files dont mention )

-type d

root owned files

-user root

permission bits

-o=w
9,348
Posted By thegeek
-L Cause the file information and...
-L
Cause the file information and file type evaluated for each symbolic link to be those of the file referenced by the link, and not the link
itself.
Forum: What is on Your Mind? 08-30-2010
27,222
Posted By thegeek
This may be fine actually. But what can...
This may be fine actually.

But what can really improve the number of posts is, not just posting anonymously after logging in. Real anonymous post without logging in. This is what exactly...
2,700
Posted By thegeek
book for a beginner : Linux 101 Hacks eBook –...
book for a beginner : Linux 101 Hacks eBook – Table of Contents (http://linux.101hacks.com/toc/)

Search for IIT lecture videos on Linux, C programming.
8,772
Posted By thegeek
some reading can shed light ... UNIX / Linux...
some reading can shed light ... UNIX / Linux umount Command Examples (http://linux.101hacks.com/unix/umount/)
6,539
Posted By thegeek
but bash is missing in this website ??? ...
but bash is missing in this website ???

Rosetta Stone for Scripting Languages (http://www.lurklurk.org/rosetta.html)
2,389
Posted By thegeek
UNIX Get An Alert When Disk Is Full...
UNIX Get An Alert When Disk Is Full (http://www.cyberciti.biz/faq/mac-osx-unix-get-an-alert-when-my-disk-is-full/)
Forum: Linux 08-12-2010
2,176
Posted By thegeek
AFAIK, there is no negation operation. You...
AFAIK, there is no negation operation.

You can try this,

0 0-9,17-23 * * * CMD
Forum: Solaris 07-21-2010
12,106
Posted By thegeek
@jlliagre : Thanks for your explanations, i...
@jlliagre : Thanks for your explanations, i understand better now.

So it is,

The used plus available figures equals total swap space on the system, which includes a portion of physical...
3,391
Posted By thegeek
Though you use 777, according to the explanation...
Though you use 777, according to the explanation at File::Path documentation,

the numeric mode to use when creating the directories (defaults to 0777), to be modified by the current umask.

...
3,641
Posted By thegeek
instead of yy, copy the current line using y$ (...
instead of yy, copy the current line using y$ ( but you should be at the starting position to copy the line )..

go to the position where you want to paste, and press p to paste .. ( so it will not...
2,137
Posted By thegeek
when you use / as delimiter then you have to...
when you use / as delimiter then you have to properly escape the / that occurs in your pattern, or else use some other delimiter other than /.


Removed Self Promoting Links
23,445
Posted By thegeek
the output which you are viewing is not red5...
the output which you are viewing is not red5 process, it is for grep process. ( which you are only initiating each time )

so, eliminating the grep process with -v option shows nothing. And it does...
Showing results 1 to 25 of 27

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