Sponsored Content
Top Forums UNIX for Beginners Questions & Answers Getting count of Key in another file Post 303015493 by Scrutinizer on Thursday 5th of April 2018 01:55:02 PM
Old 04-05-2018
Hi, try:
Code:
awk 'NR==FNR{C[$6]++; next} $1 in C{print $1, C[$1]}' FS=\; file2 FS=" " file1

This User Gave Thanks to Scrutinizer For This Post:
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to count the record count in an EBCDIC file.

How do I get the record count in an EBCDIC file on a Linux Box. :confused: (1 Reply)
Discussion started by: oracle8
1 Replies

2. UNIX for Dummies Questions & Answers

Pressing backspace key simulates enter key

Hi, Whenever i press the backspace key, a new line appears, i.e. it works like a enter key. :confused: Thanks (2 Replies)
Discussion started by: vibhor_agarwali
2 Replies

3. Shell Programming and Scripting

Getting Sum, Count and Distinct Count of a file

Hi all this is a UNIX question. I have a large flat file with millions of records. col1|col2|col3 1|a|b 2|c|d 3|e|f 3|g|h footer**** I am supposed to calculate the sum of col1 1+2+3+3=9, count of col1 1,2,3,3=4, and distinct count of col1 1,2,3=c3 I would like it if you avoid... (4 Replies)
Discussion started by: singhabhijit
4 Replies

4. Shell Programming and Scripting

Using Key to get data from second file

I posted a problem last week that had essentially two steps. Someone was kind enough to help me with the first step, but beacuse I didn't explain things well, left out the second step. I'm required to work in C Shell. I deeply appreciate any help, since I've never worked in a shell language... (4 Replies)
Discussion started by: bassmaster
4 Replies

5. Shell Programming and Scripting

Count the delimeter from a file and delete the row if delimeter count doesnt match.

I have a file containing about 5 million rows, in the file there are some records which has extra delimiter at random position. (we dont know the positions), now we have to Count the delimeter from each row and if the count of delimeter is not matching then I want to delete those rows from the... (5 Replies)
Discussion started by: Akumar1
5 Replies

6. Solaris

Solaris 8 ssh public key authentication issue - Server refused our key

Hi, I've used the following way to set ssh public key authentication and it is working fine on Solaris 10, RedHat Linux and SuSE Linux servers without any problem. But I got error 'Server refused our key' on Solaris 8 system. Solaris 8 uses SSH2 too. Why? Please help. Thanks. ... (1 Reply)
Discussion started by: aixlover
1 Replies

7. Shell Programming and Scripting

Searching the content of one file using the search key of another file

I have two files: file 1: hello.com neo.com,japan.com,example.com news.net xyz.com, telecom.net, highlands.net, software.com example2.com earth.net, abc.gov.uk file 2: neo.com example.com abc.gov.uk file 2 are the search keys to search in file 1 if any of the search key is... (3 Replies)
Discussion started by: csim_mohan
3 Replies

8. Shell Programming and Scripting

How to extract information a file according key id in another file?

hi, i have a large file containing the detailed information of a bunch of keys like this: JAT_0001 contig102_342_3_n2 contig102_342 atgcacgacta 30 50 20... (11 Replies)
Discussion started by: the_simpsons
11 Replies

9. Shell Programming and Scripting

Convert rows to columns based on key and count

Team, I am having requirement to convert rows to columns Input is: key ,count, id1, pulse1, id2, pulse2 ,id3, pulse3 12, 2 , 14 , 56 , 15, 65 13, 3, 12, 32, 14, 23, 18, 54 22, 1 , 32, 42 Expected Out put: key, id,pulse 12, 14, 56 12, 15, 65 13 ,12, 32 13, 14 ,23 13, 18 ,54 22 ,32,... (3 Replies)
Discussion started by: syam1406
3 Replies
SKEY(1) 						    BSD General Commands Manual 						   SKEY(1)

NAME
skey -- respond to an OTP challenge SYNOPSIS
skey [-n count] [-p password] [-t hash] [-x] sequence# [/] key DESCRIPTION
S/Key is a One Time Password (OTP) authentication system. It is intended to be used when the communication channel between a user and host is not secure (e.g. not encrypted or hardwired). Since each password is used only once, even if it is "seen" by a hostile third party, it cannot be used again to gain access to the host. S/Key uses 64 bits of information, transformed by the MD4 algorithm into 6 English words. The user supplies the words to authenticate him- self to programs like login(1) or ftpd(8). Example use of the S/Key program skey: % skey 99 th91334 Enter password: <your secret password is entered here> OMEN US HORN OMIT BACK AHOY % The string that is given back by skey can then be used to log into a system. The programs that are part of the S/Key system are: skeyinit(1) used to set up your S/Key. skey used to get the one time password(s). skeyinfo(1) used to initialize the S/Key database for the specified user. It also tells the user what the next challenge will be. skeyaudit(1) used to inform users that they will soon have to rerun skeyinit(1). When you run skeyinit(1) you inform the system of your secret password. Running skey then generates the one-time password(s), after requir- ing your secret password. If however, you misspell your secret password that you have given to skeyinit(1) while running skey you will get a list of passwords that will not work, and no indication about the problem. Password sequence numbers count backward from 99. You can enter the passwords using small letters, even though skey prints them capitalized. The -n count argument asks for count password sequences to be printed out ending with the requested sequence number. The hash algorithm is selected using the -t hash option, possible choices here are md4, md5 or sha1. The -p password allows the user to specify the S/Key password on the command line. To output the S/Key list in hexadecimal instead of words, use the -x option. EXAMPLES
Initialize generation of one time passwords: host% skeyinit Password: <normal login password> [Adding username] Enter secret password: <new secret password> Again secret password: <new secret password again> ID username s/key is 99 host12345 Next login password: SOME SIX WORDS THAT WERE COMPUTED Produce a list of one time passwords to take with to a conference: host% skey -n 3 99 host12345 Enter secret password: <secret password as used with skeyinit> 97: NOSE FOOT RUSH FEAR GREY JUST 98: YAWN LEO DEED BIND WACK BRAE 99: SOME SIX WORDS THAT WERE COMPUTED Logging in to a host where skey is installed: host% telnet host login: <username> Password [s/key 97 host12345]: Note that the user can use either his/her S/Key password at the prompt but also the normal one unless the -s flag is given to login(1). SEE ALSO
login(1), skeyaudit(1), skeyinfo(1), skeyinit(1), ftpd(8) RFC 2289 TRADEMARKS AND PATENTS
S/Key is a trademark of Bellcore. AUTHORS
Phil Karn Neil M. Haller John S. Walden Scott Chasin BSD
July 25, 2001 BSD
All times are GMT -4. The time now is 04:45 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy