Sponsored Content
Top Forums UNIX for Beginners Questions & Answers Read 2 file line by line @ same time Post 303034605 by MadeInGermany on Tuesday 30th of April 2019 02:01:15 PM
Old 04-30-2019
Omit the explicit \" quotes. I think you had the quotes on the command line, to prevent the shell from word-splitting (each word becomes an argument).
And, since you are going to use a while loop, prefer the builtin read command.
Code:
while read col1 <&3 && read col2 <&4; do
    keytool -export -alias "$col1" -file "$col2".der -keystore ts.jks -storepass xxxx
done 3< file1 4< file2

 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to read/process a .gz file, one line at a time?

Hello I'm stuck trying to solve this KSH issue and I'm hoping someone out there can offer some suggestions. I want to read lots of large .gz files one line at a time in order to compare its Error entries with a list of known errors. I can't simply do "foreach ERROR do gzcat *.gz |grep... (2 Replies)
Discussion started by: dayscripter
2 Replies

2. Shell Programming and Scripting

shell script to read a line in gps receiver log file and append that line to new file

Hi, I have gps receiver log..its giving readings .like below Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. GPSD,R=1 $GPGSV,3,1,11,08,16,328,40,11,36,127,00,28,33,283,39,20,11,165,00*71... (3 Replies)
Discussion started by: gudivada213
3 Replies

3. UNIX for Advanced & Expert Users

how do you parse 1 line at a time of file1 ie. line(n) each line into new file

File 1 <html>ta da....unique file name I want to give file=>343...</html> <html>da ta 234 </html> <html>pa da 542 </html> and so on... File 2 343 234 542 and so on, each line in File 1 one also corresponds with each line in File 2 I have tried several grep, sed, while .. read, do,... (4 Replies)
Discussion started by: web_developer
4 Replies

4. Shell Programming and Scripting

bash: read file line by line (lines have '\0') - not full line has read???

I am using the while-loop to read a file. The file has lines with null-terminated strings (words, actually.) What I have by that reading - just a first word up to '\0'! I need to have whole string up to 'new line' - (LF, 10#10, 16#A) What I am doing wrong? #make file 'grb' with... (6 Replies)
Discussion started by: alex_5161
6 Replies

5. Shell Programming and Scripting

Read file line by line and process the line to generate another file

Hi, i have file which contains data as below(Only sample shown, it may contain more data similar to the one shown here) i need to read this file line by line and generate an output file like the one below i.e based on N value the number of MSISDNs will vary, if N=1 then the following... (14 Replies)
Discussion started by: aemunathan
14 Replies

6. Shell Programming and Scripting

Shell script to read a text file line by line & process it...

Hi , I am trying to write an shell, which reads a text file (from a location) having a list of numbers of strictly 5 digits only ex: 33144 Now my script will check : 1) that each entry is only 5 digits & numeric only, no alphabets, & its not empty. 2)then it executes a shell script called... (8 Replies)
Discussion started by: new_to_shell
8 Replies

7. Shell Programming and Scripting

how to read the contents of two files line by line and compare the line by line?

Hi All, I'm trying to figure out which are the trusted-ips and which are not using a script file.. I have a file named 'ip-list.txt' which contains some ip addresses and another file named 'trusted-ip-list.txt' which also contains some ip addresses. I want to read a line from... (4 Replies)
Discussion started by: mjavalkar
4 Replies

8. Shell Programming and Scripting

Need a program that read a file line by line and prints out lines 1, 2 & 3 after an empty line...

Hello, I need a program that read a file line by line and prints out lines 1, 2 & 3 after an empty line... An example of entries in the file would be: SRVXPAPI001 ERRO JUN24 07:28:34 1775 REASON= 0000, PROCID= #E506 #1065: TPCIPPR, INDEX= 003F ... (8 Replies)
Discussion started by: Ferocci
8 Replies

9. Shell Programming and Scripting

Bash script to read a file from particular line till required line and process

Hi All, Am trying to write wrapper shell/bash script on a utility tool for which i need to pass 2 files as arugment to execute utility tool. Wraper script am trying is to do with above metion 2 files. utility tool accepts : a. userinfo file : which contains username b. item file : which... (2 Replies)
Discussion started by: Optimus81
2 Replies

10. Shell Programming and Scripting

How to read file line by line and compare subset of 1st line with 2nd?

Hi all, I have a log file say Test.log that gets updated continuously and it has data in pipe separated format. A sample log file would look like: <date1>|<data1>|<url1>|<result1> <date2>|<data2>|<url2>|<result2> <date3>|<data3>|<url3>|<result3> <date4>|<data4>|<url4>|<result4> What I... (3 Replies)
Discussion started by: pat_pramod
3 Replies
DEFAULTS(1)						       GNUstep System Manual						       DEFAULTS(1)

NAME
defaults - read or modify GNUstep user defaults SYNOPSIS
defaults [ action ] DESCRIPTION
The 'defaults' command lets you to read and modify a user's defaults. This program replaces the old NeXTstep style dread, dwrite, and dremove programs. If you have access to another user's defaults database, you may include '-u username' before any other options to use that user's database rather than your own. defaults read [ domain [ key] ] read the named default from the specified domain. If no 'key' is given - read all defaults from the domain. If no 'domain' is given - read all defaults from all domains. A domain is either an application name, or "NSGlobalDomain", for system level defauts. (Running programs can access two other domains, "NSArgumentDomain", for command line arguments, "NSRegistrationDomain", a second- chance domain in which "defaults for defaults" can be registered, and possibly domains for specific locales.) defaults readkey key read the named default from all domains. defaults write domain key value write 'value' as default 'key' in the specified domain. 'value' must be a property list in single quotes. defaults write domain dictionary write 'dictionary' as a replacement for the specified domain. 'dictionary' must be a property list in single quotes. defaults write reads standard input for defaults in the format produced by 'defaults read' and writes them to the database. defaults delete [ domain [ key] ] remove the specified default(s) from the domain. If no 'key' is given - delete the entire domain. defaults delete read standard input for a series of lines containing pairs of domains and keys for defaults to be deleted. defaults domains lists the domains in the database (one per line) defaults find word searches domain names, default names, and default value strings for those equal to the specified word and lists them on standard output. defaults plist output some information about property lists defaults help list options for the defaults command. FILES
~/GNUstep/Defaults/.GNUstepDefaults holds defaults for a user BUGS
None known. DIAGNOSTICS
Hopefully self-explanatory. HISTORY
The 'defaults' command appeared in OpenStep and combined the capabilities of the earlier NeXTstep commands 'dread', 'dwrite', and 'dremove'. The GNUstep version was written in 1998. This manual page first appeared in gnustep-base 1.9.2 (March 2004). AUTHORS
defaults was written by Richard Frith-Macdonald <rfm@gnu.org> GNUstep February 2004 DEFAULTS(1)
All times are GMT -4. The time now is 02:46 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy