Search Results

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

for F in "$FILES"
1,594
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,083
Posted By thegeek
redirect stderr .. cp filea fileb...
redirect stderr ..

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

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

while, for are loop statements...
5,098
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,167
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,583
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,140
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,429
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,415
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,329
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,196
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,696
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,769
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,531
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,384
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,173
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,100
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,387
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,639
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,135
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,433
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:07 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy