Call awk script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Call awk script
# 8  
Old 10-07-2014
You might fine some answers to certificate issues with wget on cygwin here
# 9  
Old 10-08-2014
add argument --no-check-certificate or else install ca-certificates
# 10  
Old 10-08-2014
Code:
 awk '!a[$0]++{print "wget"--no-check-certificate,$0}' html.txt | sh
sh: line 1: wget-1: command not found
sh: line 2: wget-2: command not found
sh: line 3: wget-3: command not found
sh: line 4: wget-4: command not found
sh: line 5: wget-5: command not found
sh: line 6: wget-6: command not found
sh: line 7: wget-7: command not found
sh: line 8: wget-8: command not found
sh: line 9: wget-9: command not found
sh: line 10: wget-10: command not found
sh: line 11: wget-11: command not found

HTML Code:
 html.txt
https://www.genedx.com/test-catalog/available-tests/edar-gene-sequencing/
https://www.genedx.com/test-catalog/available-tests/irf6-gene-sequencing/
https://www.genedx.com/test-catalog/available-tests/btd-gene-sequencing/
https://www.genedx.com/test-catalog/available-tests/crebbp-select-exons-sequencing-deldup/
https://www.genedx.com/test-catalog/available-tests/jag1-tier-1/
https://www.genedx.com/test-catalog/available-tests/jag1-tier-2/
https://www.genedx.com/test-catalog/available-tests/mmachc-gene-sequencing/
https://www.genedx.com/test-catalog/available-tests/periodic-fever-syndromes-panel-7-genes/
https://www.genedx.com/test-catalog/available-tests/sox2-gene-sequencing/
https://www.genedx.com/test-catalog/available-tests/elane-gene-sequencing/
https://www.genedx.com/test-catalog/available-tests/whole-exome-sequencing-xomedx/
Thank you.
# 11  
Old 10-08-2014
Code:
awk '!a[$0]++{print "wget --no-check-certificate",$0}' html.txt | sh

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Shell script to call and sort awk script and output

I'm trying to create a shell script that takes a awk script that I wrote and a filename as an argument. I was able to get that done but I'm having trouble figuring out how to keep the header of the output at the top but sort the rest of the rows alphabetically. This is what I have now but it is... (1 Reply)
Discussion started by: Eric7giants
1 Replies

2. Programming

How to call a variable in awk again ?

Hi again and thanks to R.Singh. One more question here. The code works in awk. (or GAWK) awk 'BEGIN{print "Enter your Name: ";getline name < "-";print RS "Input entered by user is: "name}' How to display the variable name again ? The awk script is running automaticly to the... (3 Replies)
Discussion started by: Zabo
3 Replies

3. Shell Programming and Scripting

awk script to call another script based on second column entry

Hi I have a text file (Input.txt) with two column entries separated by tab as given below: aaa str1 bbb str2 cccccc str3 dddd str4 eee str3 ssss str2 sdf str3 hhh str1 fff str2 ccc str3 ..... ..... ..... (1 Reply)
Discussion started by: my_Perl
1 Replies

4. Shell Programming and Scripting

Call a awk script with variable and input filename

HI, MY question is a very simple one: if i want to call an awk script with the input file name and also pass a variable value , then how to do it. #>awk -f my_script.awk -v variable=value my_inputfile.txt I can't do it like this. throws error: awk: my_script.awk:18:... (0 Replies)
Discussion started by: Onkar Banerjee
0 Replies

5. Shell Programming and Scripting

Call shell script function from awk script

hi everyone i am trying to do this bash> cat abc.sh deepak() { echo Deepak } deepak bash>./abc.sh Deepak so it is giving me write simply i created a func and it worked now i modified it like this way bash> cat abc.sh (2 Replies)
Discussion started by: aishsimplesweet
2 Replies

6. Shell Programming and Scripting

How to call parametrs to awk script

Hi All, I have script to handle nulls in column2 from file1.txt and redirect its output to file2.txt I am confused with run-time command line arguments. b'cause i normal unix we use $1 $2 for two parameters. But in awk it treat $1 as column1. So, i tried with awk -v var1 -v var2... how to... (7 Replies)
Discussion started by: kmsekhar
7 Replies

7. Shell Programming and Scripting

Passing argument to system call in awk script

So, I have this script. It reads a CSV file that has a mixture of object names with IP addresses (parsing out that part I have working), and object names which have a DNS name. I want to be able to run a "dig +short" based off of the name given to me in the line of the awk script, and then deal... (6 Replies)
Discussion started by: mikesimone
6 Replies

8. Shell Programming and Scripting

awk , function call problem

#!/bin/bash awk ' function ad(t,r){ return (t+r); } BEGIN{ print ad(5,3); } { print ad(5,3); } ' Doesn't print anything for the last print ad(5,3); (6 Replies)
Discussion started by: cola
6 Replies

9. Shell Programming and Scripting

How to call a shell script from awk ?

BEGIN { account_no = substr($0,1,8)} { billdate = substr($0,13,20)} { billduedate = substr($0,21,28)} { billid = billid - 1} { billduedate = billdatecalc(billduedate - 1)} ... END .... How do I call the shell script billdatecalc(arguments ..) in an... (1 Reply)
Discussion started by: Amruta Pitkar
1 Replies

10. UNIX for Dummies Questions & Answers

a system call for sed in a awk script

Hi, this is my test file : DELETE FROM TABLE WHERE ID_INTERNAL = :TABLE.ID-INTERNAL, ID-INTERNAL-CRAZY ID-INTERNAL-OPEN ID-INTERNAL /ID-INTERNAL/ I want all occurences of ID-INTERNAL replaced with a one, if ID-INTERNAL has and dash afer it , dont replace it example:... (6 Replies)
Discussion started by: seaten
6 Replies
Login or Register to Ask a Question