Sponsored Content
Full Discussion: how to recover with awk
Top Forums Shell Programming and Scripting how to recover with awk Post 49693 by mips on Thursday 8th of April 2004 06:15:41 AM
Old 04-08-2004
how to recover with awk

Hi everybody,
I have a line output (after doing a awk) which is like:
10.0.0.1 : 0:4:45:a7:67:5
10.0.0.58 : 0:e:aa:18:f9:42
...
how can i recover all data because i want to use each line separetely
if anyone has an idea, thanks in advance
 

9 More Discussions You Might Find Interesting

1. Cybersecurity

Recover A password

Hello All, I have an application user (INFORMIX). This is a system user. It runs processes That I am unaware of. I need to discover the user's password. I can't change it, because it will affect the processes it's runnig. Is there a utility that will allow me to 'su' to that user from root... (3 Replies)
Discussion started by: SmartJuniorUnix
3 Replies

2. Solaris

recover after delete using rm -rf

Dears, hi all i write this command rm -rf /export/home/john this there any command make me able to restore this folder again (5 Replies)
Discussion started by: jenovaux
5 Replies

3. Solaris

Recover Solaris 8

Hi, I need to mount the Solaris 8 OS filesystem in order to replace a lib, concretely /usr/lib/ld.so.1. I'm able to boot in single mode with the installation CD, but I'm afraid to mount the root partition because I don't want to risk break the mirror. I tried to follow Performing System... (2 Replies)
Discussion started by: ricardo.amm
2 Replies

4. Ubuntu

how to recover libstdc++.so.6

Hi! I'm using Ubuntu Karmic and I lost libstdc++.so.6. Is there a way to recover it?.. Thanks in advance (0 Replies)
Discussion started by: Sapfeer
0 Replies

5. UNIX for Dummies Questions & Answers

using the recover command

Hi Guys, just need a little bit of guidance here... i need to recover data from a backup tape using the recover command. can someone please give some pointers as to where to start? Thank you (2 Replies)
Discussion started by: brian112
2 Replies

6. Solaris

Recover solaris 9

Hi Admins, Server : V890 sparc OS : 9 I want to initiate the OS backup. We use SUN storedge tape drive. What backup mode i should use to take the os backup and what is the exact command for the same. Regards newsol (0 Replies)
Discussion started by: newsol
0 Replies

7. UNIX for Advanced & Expert Users

How to recover .bash_history?

rm -rf .bash_history some one ran rm -rf .bash_history on my Linux server(SUSE),I can see this command being run in current history, but I want the OLD history as well,can I recover the old history back. (9 Replies)
Discussion started by: Ankit Bansal
9 Replies

8. Solaris

Recover rm command

Consider a situation where in you have used rm command wrongly in a particular directory say rm -r * and we don't have any backup of those files which ever are deleted. NOTE: I'm not facing situation like this but wanted to know what all options are available for such a situation. is... (5 Replies)
Discussion started by: Gautham
5 Replies

9. Homework & Coursework Questions

How to recover a host id?

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: How to change a host id in solaris 10 2. Relevant commands, code, scripts, algorithms: 3. The attempts... (1 Reply)
Discussion started by: NwStud52
1 Replies
JOIN(1) 						      General Commands Manual							   JOIN(1)

NAME
join - relational database operator SYNOPSIS
join [-an] [-e s] [-o list] [-tc] file1 file2 DESCRIPTION
Join forms, on the standard output, a join of the two relations specified by the lines of file1 and file2. If file1 is `-', the standard input is used. File1 and file2 must be sorted in increasing ASCII collating sequence on the fields on which they are to be joined, normally the first in each line. There is one line in the output for each pair of lines in file1 and file2 that have identical join fields. The output line normally con- sists of the common field, then the rest of the line from file1, then the rest of the line from file2. Fields are normally separated by blank, tab or newline. In this case, multiple separators count as one, and leading separators are dis- carded. These options are recognized: -an In addition to the normal output, produce a line for each unpairable line in file n, where n is 1 or 2. -e s Replace empty output fields by string s. -o list Each output line comprises the fields specified in list, each element of which has the form n.m, where n is a file number and m is a field number. -tc Use character c as a separator (tab character). Every appearance of c in a line is significant. SEE ALSO
sort(1), comm(1), awk(1). BUGS
With default field separation, the collating sequence is that of sort -b; with -t, the sequence is that of a plain sort. The conventions of join, sort, comm, uniq, look and awk(1) are wildly incongruous. 7th Edition April 29, 1985 JOIN(1)
All times are GMT -4. The time now is 09:48 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy