Search Results

Search: Posts Made By: U_C_Dispatj
Forum: What is on Your Mind? 06-17-2011
2,497
Posted By KenJackson
You have a smiley there, and you're almost...
You have a smiley there, and you're almost quoting one of those articles, but I hope you're not saying that tongue in cheek. There's some wisdom in your words. If bitcoins had no value, why would...
Forum: What is on Your Mind? 06-16-2011
5,152
Posted By Neo
From the Amazon summary:
From the Amazon summary:
Forum: What is on Your Mind? 06-16-2011
5,152
Posted By Neo
Update: Here is a link to Ed's book: ...
Update: Here is a link to Ed's book:

Counter Hack by Ed Skoudis (http://www.amazon.com/dp/0130332739?tag=counterhack-20&camp=14573&creative=327641&linkCode=as1&creativeASIN=013033273)

I am...
Forum: What is on Your Mind? 06-16-2011
5,152
Posted By Neo
Definition is not important. This thread was...
Definition is not important.

This thread was about resources to learn penetration testing. Penetration testing is a standard and well accepted skill for computer security professionals. A...
Forum: What is on Your Mind? 11-03-2010
7,457
Posted By zaxxon
People that want to do harm to others would...
People that want to do harm to others would benefit from that technology too - you sure you still want that? ;) Also humans would degenerate even more not moving their limbs :D

---------- Post...
Forum: What is on Your Mind? 06-15-2011
5,152
Posted By Corona688
I don't think it's considered hacking to attack...
I don't think it's considered hacking to attack your own system.
Forum: What is on Your Mind? 06-15-2011
5,152
Posted By Corona688
As I understand it 'hacking' is a pejorative and...
As I understand it 'hacking' is a pejorative and always negative.
Forum: What is on Your Mind? 06-15-2011
5,152
Posted By Corona688
If someone asks you if you're a hacker, which...
If someone asks you if you're a hacker, which kind would you assume they meant? I would have liked it if the term kept its good connotations too but the horse is long dead, it's not coming back.
Forum: What is on Your Mind? 06-15-2011
5,152
Posted By pludi
From the Jargon File...
From the Jargon File (http://www.catb.org/jargon/html/H/hacker.html):

IMO there aren't black-hat or white-hat hackers, but those who try to circumvent protection features, and then advise their...
Forum: What is on Your Mind? 06-15-2011
5,152
Posted By fpmurphy
See Penetration testing training course...
See Penetration testing training course (http://www.elearnsecurity.com/course/penetration_testing/). Armando Romeo is well respected.
Forum: What is on Your Mind? 06-13-2011
3,976
Posted By Perderabo
Read this (http://en.wikipedia.org/wiki/Efnet)
Read this (http://en.wikipedia.org/wiki/Efnet)
Forum: What is on Your Mind? 06-09-2011
2,497
Posted By KenJackson
Bitcoin
I just learned about a new "peer-to-peer currency" named Bitcoin (http://www.weusecoins.com/). It also has a wiki (https://en.bitcoin.it/wiki/Main_Page).

It promises to be a currency that can be...
Forum: Programming 06-10-2011
5,364
Posted By radoulov
Try: [...] group by E.FIRST_NAME ||...
Try:


[...]
group by
E.FIRST_NAME || ' ' || E.LAST_NAME
Forum: OS X (Apple) 11-12-2005
62,489
Posted By Neo
Mac OS X: Based on UNIX - Solid As a Rock
See this threads:

Page Not Found - Apple (http://www.apple.com/macosx/features/unix/)

Open Source - Apple (http://www.apple.com/opensource/)
Forum: What is on Your Mind? 06-01-2011
1,313
Posted By quadphonic
BBC News: Code-cracking Tunny machine returned to life
Link: BBC News - Code-cracking machine returned to life (http://www.bbc.co.uk/news/technology-13566878)

Excerpt:
1,240
Posted By kumaran_5555
If you want the new record to be in the same...
If you want the new record to be in the same line, then you can use awk to do that. or few head and tail commands with line number will help.

I am giving a simple example with awk here,

...
1,240
Posted By kumaran_5555
I think as per your code, it seems that the strID...
I think as per your code, it seems that the strID is unique inside the recodedatabase file, i.e. we will have only one record having strID.

In this case, if you aren't bothered about the record...
2,726
Posted By zaxxon
Tools like grep, sed, awk etc. use reg exp. If...
Tools like grep, sed, awk etc. use reg exp. If you want to get familiar with reg exps, maybe try to start working with those 3 tools. For grep there is grep -E or egrep, which gives access to a...
1,663
Posted By palanisvr
Try with this..
Code :

$cat test.fnc
v1=$1
function findRecord() {
output=`grep $v1 recordDatabase`
echo $output
}
#call function
findRecord

execute the function

$sh...
1,663
Posted By pravin27
try like this, output=$(grep "001"...
try like this,
output=$(grep "001" recordDatabase)
2,122
Posted By danmero
#!/bin/bash clear read -p "Please enter...
#!/bin/bash

clear

read -p "Please enter a string: " str1
read -p "Please enter another string: " str2

case $(( ${#str1} - ${#str2} )) in
0) echo "Strings are of equal length!";;
...
2,122
Posted By fpmurphy
Note the use of final else! clear read...
Note the use of final else!

clear

read -p "Please enter a string: " str1
read -p "Please enter another string: " str2

length1=$(echo -n $str1 | wc -c)
length2=$(echo -n $str2 | wc -c)
...
2,122
Posted By mayursingru
Hi U_C_Dispatj, Please tell th error you are...
Hi U_C_Dispatj,
Please tell th error you are encountering. The code worked fine for me it is as below.

#!/bin/bash

clear

read -p "Please enter a string: " str1
read -p "Please enter...
2,122
Posted By Franklin52
#!/bin/bash clear read -p "Please...
#!/bin/bash

clear

read -p "Please enter a string: " str1
read -p "Please enter another string: " str2

length1=${#str1} # not necessary to use external commands
length2=${#str2}

if [...
2,726
Posted By birei
Hi, Test this 'Perl' script: $ cat...
Hi,

Test this 'Perl' script:

$ cat infile
Is th1s 0k?
I hop3 s0
$ cat script.pl
use strict;
use warnings;
use autodie;

@ARGV == 1 or die "Usage: perl $0 input-file\n";
open my $fh,...
Showing results 1 to 25 of 26

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