Sponsored Content
Top Forums UNIX for Beginners Questions & Answers Read 2 file line by line @ same time Post 303034596 by abhaydas on Tuesday 30th of April 2019 07:59:02 AM
Old 04-30-2019
Thanks Rudic for your help,now i am getting the desired output but what i am trying to achieve is below
i have to pass col1 and col2 values to keytool command to have it like below

Code:
keytool -export -alias "abc def ijk ca" -file abcdefijkca.der -keystore ts.jks -storepass xxxx
keytool -export -alias "def fff ere we" -file defffferewe.der -keystore ts.jks -storepass xxxx

Tried implement as below

Code:
#!/bin/bash
#set -x
paste file1 file2 | while IFS=$'\t' read col1 col2 ;
do echo "\"${col1}\" ${col2}";
keytool -export -alias "\"${col1}\" -file ${col2}".der -keystore ts.jks -storepass xxxx;
done


but after executing it i am getting below error as < is getting appended to col1 and col2 as below

Code:
"abc def ijk ca" abcdefijkca
Java HotSpot(TM) 64-Bit Server VM warning: PICL (libpicl.so.1) is missing. Performance will not be optimal.
keytool error: java.lang.Exception: Alias <"abc def ijk ca" -file abcdefijkca.der> does not exist
"def fff ere we" defffferewe
Java HotSpot(TM) 64-Bit Server VM warning: PICL (libpicl.so.1) is missing. Performance will not be optimal.
keytool error: java.lang.Exception: Alias <"def fff ere we" -file defffferewe.der> does not exist

Please advise

Moderator's Comments:
Mod Comment
Please wrap all code, files, input & output/errors in CODE tags.
It makes them far easier to read and preserves multiple spaces for indenting or fixed-width data.

Last edited by rbatte1; 04-30-2019 at 01:42 PM..
 

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
policytool(1)						      General Commands Manual						     policytool(1)

NAME
policytool - policy file creation and management tool SYNOPSIS
policytool DESCRIPTION
The policy for a Java runtime (specifying which permissions are available for code from various sources, when executing as various princi- pals) is represented by a Policy object. The default Policy implementation obtains its information from static ASCII policy configuration files. A policy file can be composed via a simple text editor, or via the graphical Policy Tool utility described here. Using the Policy Tool saves typing and eliminates the need for you to know the required policy file syntax thus reducing errors. Starting Policy Tool To start Policy Tool, simply type the following at the command line. policytool This brings up the "Policy Tool" window. Whenever Policy Tool is started, it tries to fill in this window with policy information from what is sometimes referred to as the "user policy file". The user policy file is by default a file named .java.policy in your home directory. If Policy Tool cannot find the user pol- icy file, it reports the situation and displays a blank "Policy Tool" window (that is, a window with headings and buttons but no data in it). You can then proceed to either open whatever policy file you want to work on or create a new policy file, by adding policy entries, option- ally specifying a keystore, and saving the file). The first time you run the Policy Tool, there will not be a user policy file (unless you created one manually). Creating a new Policy File To create a new policy file, start by simply selecting the New command from the File menu. This will close the currently open policy file (if any, after first prompting you to save it if needed) and bring up a new policy tool window, that is, a window with headings and buttons but no data in it. Please Note: this is not necessary the first time you run the Policy Tool. Since the tool tries to open the user policy file and one doesn't exist yet (unless it was created manually), the tool will bring up a window without any data in it. Once you have a new policy tool window, you can then create the policy entries, and specify the keystore (if any of the policy entries specify a keystore alias). At any point, you can save the policy file. Opening a Different Policy File To work on a different policy file than the one currently being worked on (if any), use the Open command in the File menu. This will close the currently open policy file (if any, after first prompting you to save it if needed) and will present you with an Open dialog, which you can use to navigate the directory structure until you get to the directory containing the policy file you want to work on. Select that file, then select the OK button. The "Policy Tool" window will then be filled in with information from the policy file, including the policy file name, the keystore URL (if any), and the CodeBase, SignedBy and Principal parts of each policy entry in the policy file. Specifying the Keystore To specify the keystore containing the key information for the aliases specified in the SignedBy parts of policy entries, select the Change Keystore command in the Edit menu. This brings up a dialog box in which you specify the new keystore URL and optionally the keystore type. As an example, to specify the keystore named "mykeystore" in the /tests/ directory, type the following file: URL into the text box labeled "New KeyStore URL". file:/tests/mykeystore To also specify that the keystore type is "JKS" (the proprietary keystore type supported by Sun Microsystems), type the following into the text box labeled "New KeyStore Type". JKS When you are done specifying the keystore URL and type (if any), select OK (or you can select Cancel to cancel the operation). If you didn't cancel, the text box labeled "Keystore:" is now filled in with the keystore URL and type. Adding a New Policy Entry To add a new policy entry, select the Add Policy Entry button in the main "Policy Tool" window. This brings up a "Policy Entry" dialog box. Using this dialog box, you specify o an optional CodeBase entry indicating the URL location where the code originates from. For example, to indicate code from the local /JavaSoft/TESTS/ directory, type the following file URL into the CodeBase text box: file:/JavaSoft/TESTS o an optional SignedBy entry indicating the alias name from the keystore used to reference the signer whose private key was used to sign the code. For example, to indicate the alias named "duke", simply type the following into the SignedBy text box: duke o an optional Principals entry indicating the list of principals that the code has to be executed as in order for the permission(s) to be granted. See Adding a New Principal. o one or more permission entries indicating which permissions are granted to the code from the source indicated by the CodeBase and SignedBy values (or to any code if no such values are specified) when running as the specified principals in the Principals list. See Adding a New Permission. Editing a Policy Entry To edit an existing policy entry, select the line for that entry in the main "Policy Tool" window, then select the Edit Policy Entry but- ton. Alternatively, you can simply double-click the line for that entry. This brings up the same type of "Policy Entry" dialog box as appears when you are adding a new policy entry, except in this case the dialog box is filled in with the existing policy entry information. To change the information, simply retype it (for the CodeBase and SignedBy values) or use the buttons (for the Principals and Permissions values). When you are done, select the Done button (or Cancel to cancel). Removing a Policy Entry To delete a policy entry from the policy file, select the line for that entry in the main "Policy Tool" window, then select the Remove Pol- icy Entry button. The complete policy entry is displayed, and you can then either select OK to remove the entry, or Cancel to keep it. Saving the Policy File To save changes to an existing policy file, simply select the Save command in the File menu. To save a new policy file you've been creating, or to copy an existing policy file to a new policy file with a different name, select the Save As command from the File menu. This brings up the Save As dialog box. Navigate the directory structure to get to the directory in which you want to save the policy file. Type the desired file name, then select the OK button. The policy file is now saved, and its name and path are shown in the text box labeled "Policy File:" Exiting the Policy Tool To exit Policy Tool, select the Exit command from the File menu. Viewing the Warning Log If Policy Tool ever reports that warnings have been stored in the Warning Log, you can view the log by selecting the View Warning Log com- mand in the Edit menu. For example, if you have a policy file with a Keystore URL specifying a keystore that doesn't yet exist, you will get such a warning at various times, e.g., when you open the file. You can continue to work on the policy file even if warnings exist. SEE ALSO
http://rhea.sfbay:91/j2se/1.5.0/docs/guide/security/permissions.html http://java.sun.com/j2se/1.5/docs/tooldocs/solaris/policytool.html http://rhea.sfbay:91/j2se/1.5.0/docs/tooldocs/solaris/keytool.html 24 June 2004 policytool(1)
All times are GMT -4. The time now is 04:48 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy