Sponsored Content
Full Discussion: Noob trying to improve
Operating Systems OS X (Apple) Noob trying to improve Post 302988438 by RudiC on Monday 26th of December 2016 11:33:08 AM
Old 12-26-2016
This may serve as a starting point (file contains the web content downloaded before):

Code:
awk '/href.*view more/ {sub (/^[^<]*<a href="/, "curl -s https://www.dotmed.com")
                        sub (/">.*$/, "")
                        print}
' file | sh | awk '
/<\/*title>/ ||
/id=\"price/ ||
/id=\"condition/ ||
/id=\"date_updated/     {gsub (/<[^>]*>/, _)
                         if (length) print
                        }
' 

 
Used GE Lunar DPX Bone Densitometer For Sale - DOTmed Listing #2299124: 
			Price:$20,000.00 USD [convert]
			Condition:Used - Excellent
			Date updated:December  18, 2016
 
New OSTEOSYS DEXXUM T Bone Densitometer For Sale - DOTmed Listing #2299556: 
			Price:$19,990.00 USD [convert]
			Condition:New
			Date updated:December  09, 2016
 
Used HOLOGIC DISCOVERY C Bone Densitometer For Sale - DOTmed Listing #1184884: 
			Price:$19,000.00 USD [convert]
			Condition:Used - Good
			Date updated:December  07, 2016
.
.
.


Last edited by RudiC; 12-26-2016 at 02:41 PM..
This User Gave Thanks to RudiC For This Post:
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Can I improve this script ???

Hi all, Still a newbie and learning as I go ... as you do :) Have created this script to report on disc usage and I've just included the ChkSpace function this morning. It's the first time I've read a file (line-by-bloody-line) and would like to know if I can improve this script ? FYI - I... (11 Replies)
Discussion started by: Cameron
11 Replies

2. UNIX for Advanced & Expert Users

improve performance by using ls better than find

Hi , i'm searching for files over many Aix servers with rsh command using this request : find /dir1 -name '*.' -exec ls {} \; and then count them with "wc" but i would improve this search because it's too long and replace directly find with ls command but "ls *. " doesn't work. and... (3 Replies)
Discussion started by: Nicol
3 Replies

3. Shell Programming and Scripting

improve this?

Wrote this script to find the date x days before or after today. Is there any way that this script can be speeded up or otherwise improved? #!/usr/bin/sh check_done() { if then daysofmth=31 elif then if ... (11 Replies)
Discussion started by: blowtorch
11 Replies

4. UNIX for Dummies Questions & Answers

Improve Performance

hi someone tell me which ways i can improve disk I/O and system process performance.kindly refer some commands so i can do it on my test machine.thanks, Mazhar (2 Replies)
Discussion started by: mazhar99
2 Replies

5. Shell Programming and Scripting

Any way to improve performance of this script

I have a data file of 2 gig I need to do all these, but its taking hours, any where i can improve performance, thanks a lot #!/usr/bin/ksh echo TIMESTAMP="$(date +'_%y-%m-%d.%H-%M-%S')" function showHelp { cat << EOF >&2 syntax extreme.sh FILENAME Specify filename to parse EOF... (3 Replies)
Discussion started by: sirababu
3 Replies

6. IP Networking

How to improve throughput?

I have a 10Gbps network link connecting two machines A and B. I want to transfer 20GB data from A to B using TCP. With default setting, I can use 50% bandwidth. How to improve the throughput? Is there any way to make throughput as close to 10Gbps as possible? thanks~ :) (3 Replies)
Discussion started by: andrewust
3 Replies

7. Shell Programming and Scripting

Want to improve the performance of script

Hi All, I have written a script as follows which is taking lot of time in executing/searching only 3500 records taken as input from one file in log file of 12 GB Approximately. Working of script is read the csv file as an input having 2 arguments which are transaction_id,mobile_number and search... (6 Replies)
Discussion started by: poweroflinux
6 Replies

8. AIX

improve sulog

I just wrote a very small script that improves readability on system sulog. The problem with all sulog is there is lack of clarity whether the info you are looking at is the most current. So if you just need a simple soution instead of going thru the trouble of writing a script that rotate logs and... (0 Replies)
Discussion started by: sparcguy
0 Replies

9. Shell Programming and Scripting

How to improve an script?

Gents. I have 2 different scripts for the same purpose: raw2csv_1 Script raw2csv_1 finish the process in less that 1 minute raw2csv_2 Script raw2csv_2 finish the process in more that 6 minutes. Can you please check if there is any option to improve the raw2csv_2. To finish the job... (4 Replies)
Discussion started by: jiam912
4 Replies

10. Shell Programming and Scripting

Improve script

Gents, Is there the possibility to improve this script to be able to have same output information. I did this script, but I believe there is a very short code to get same output here my script awk -F, '{if($10>0 && $10<=15) print $6}' tmp1 | sort -k1n | awk '{a++} END { for (n in a )... (23 Replies)
Discussion started by: jiam912
23 Replies
pud-faq(7)							  MISCELLANEOUS 							pud-faq(7)

  NAME
	  pud-faq - faqs and facts about the Portable Unix Documentation FAQ authoring language.

	  This	document  describes  the Portable Unix Documentation (PUD) faq mini-language in the style of a FAQ. PUD-faq is built on top of the
	  macro interpreter zoem. A PUD document is generally well-structured, relatively free of formatting statements, compact to write and eas-
	  ily  extendable.  It	can  be converted to both troff and html, for viewing in terminals and browsers. High quality Postscript and plain
	  text formats can be derived from the troff output. Refer to pud-man for examples.

  DESCRIPTION
	  The PUD faq macros extend the PUD manual macros; a PUD faq document must import both man.zmm and faq.zmm. There are  only  a	few  addi-
	  tional faq macros in faq.zmm. The overall layout of a faq document is as follows:

	  import{man.zmm}
	  import{faq.zmm}

	  egin{pud::man}{
	     {name}{pud-faq}
	     {html_title}{The PUD faq mini-language FAQ}
	     {author}{Stijn van Dongen}
	     {section}{7}
	  }

	  "faq::preamble"

	  ${html}{"man::maketoc"}

	  sec{toc}{TOC}
	  "faq::maketoc"

	  egin{faqsec}{{ref}{Labelx}{cap}{Captionx}}
	     content
	  end{faqsec}

	  egin{faqsec}{{ref}{Labely}{cap}{Captiony}}
	     content
	  end{faqsec}

	  end{pud::man}

	  The PUD manual macros are documented in the pud-man manual page.

	  Create your FAQ according to the lay-out above and as described further below. Refer to Question 2.3 for full-size examples.

	  Once you have written your FAQ, process it as follows.

	     zoem -i your-faq.azm -d html
	     zoem -i your-faq.azm -d html
	     zoem -i your-faq.azm -d roff -o your-faq.7
	     zoem -i your-faq.azm -d roff -o your-faq.7

	  This generates files your-faq.html and your-faq.7.  Each device is run twice to be certain that references are found and linked.

  RESOURCES
	  o The Zoem User Manual.
	  o The pud-man manual page.

  TOC
  1...... How do I create and link to questions and sections?
   1.1... How do I start a section?
   1.2... How do I make a faq entry?
   1.3... How do I link to a question?
   1.4... How do I link to a section?
   1.5... Is that not a whole lot of typing just for linking?

  2...... Miscellaneous
   2.1... Is it really possible to have more than one section?
   2.2... Is there an easy way to get back to the TOC?
   2.3... Show me a real FAQ, not this nonsense.
   2.4... I want to change the appearance of my FAQ.
   2.5... Show me the source to this FAQ.

  FAQ
						    How do I create and link to questions and sections?

   1.1	  How do I start a section?

	  You would for example type

	  egin{faqsec}{
	     {ref}{kind}
	     {cap}{How do I link to questions and sections?}
	  }

   1.2	  How do I make a faq entry?

	  You create an entry as follows:

	  faq{q_question}{How do I make a faq entry?}
	     You create an entry as follows:
	     ...

   1.3	  How do I link to a question?

	  car{Like this: linking to
	  iref{q_qlink}{Question~
efnumber{q_qlink}},
	  or a silly link to the iref{q_qlink}{current question}.
	  Linking to iref{s_basics}{Question~
efnumber{q_slink}},
	  or a link to the iref{q_slink}{next question}.}

	  par{
	  Of course, you have to use wordings such that the
	  text still makes sense in the absence of links
	  (assuming you are intested in the troff version of
	  the FAQ you are writing), so normally you just refer to
	  iref{q_slink}{Question~
efnumber{q_slink}} and be done
	  with it.}

	  Like this: linking to Question 1.3, or a silly link to the current question.	Linking to Question 1.4, or a link to the next question.

	  Of course, you have to use wordings such that the text still makes sense in the absence of links (assuming you are intested in the troff
	  version of the FAQ you are writing), so normally you just refer to Question 1.4 and be done with it.

   1.4	  How do I link to a section?

	  car{Like this: linking to
	  iref{q_qlink}{Section~
efnumber{s_basics}} and
	  linking to iref{q_stupid}{Section~
efnumber{s_stupid}}.}

	  Like this: linking to Section 1 and linking to Section 2.

   1.5	  Is that not a whole lot of typing just for linking?

	  It sure is. Note the repeating elements though. Feel free to create your own shortcuts by using Zoem's macro facilities.

								       Miscellaneous

   2.1	  Is it really possible to have more than one section?

	  QED

   2.2	  Is there an easy way to get back to the TOC?

	  In the HTML version of the faq, one can click on the number to the left of the question; this will take you to the top of the  TOC  part
	  pertaining to the section that question belongs to.

   2.3	  Show me a real FAQ, not this nonsense.

	  The  reason I began writing zoem and PUD was that I wanted decent (both HTML and troff) and easy to write documentation for my implemen-
	  tation of the MCL cluster algorithm.

	  o http://micans.org/mcl/src/mcl-latest/doc/mclfaq.azm
	  o http://micans.org/mcl/src/mcl-latest/doc/mclfaq.html
	  o http://micans.org/mcl/src/mcl-latest/doc/mclfaq.ps

   2.4	  I want to change the appearance of my FAQ.

	  Well, you need to make a copy of the faq macros and possibly the man macros, and hack those changes in.  Zoem itself is  very  flexible,
	  but  the  PUD faq macros are not, in this respect. They can be made so, if you wish.	If you just want to change or add some style sheet
	  rules for the HTML version, it will be quite easy.  The same holds for changing font styles and possibly even spacing rules.

   2.5	  Show me the source to this FAQ.

	  Search for pud-faq.azm in your install of zoem.  Take note though that I played a few silly tricks in this FAQ, so the source looks more
	  unreadable than your average FAQ.  The FAQ pointed to in Answer 2.3 gives a more realistic impression.

  AUTHOR
	  Stijn van Dongen.

  SEE ALSO
	  The pud-man manual page, documenting the PUD manual language. The FAQ language imports the manual definitions and you use these e.g. for
	  sectioning commands as described above.

	  The pud manual page gives an overview of PUD.

  pud-faq 1.002, 10-008 					      8 Jan 2010							  pud-faq(7)
All times are GMT -4. The time now is 01:17 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy