script for adding page number before page breaks


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting script for adding page number before page breaks
# 1  
Old 09-21-2012
[solved] script for adding page number before page breaks

Hi,
If there is an expert that can help:

I have many txt files that are produced from pdftotext that include page breaks the page breaks seem to be unix style hex 0C.
I want to add page numbers before each page break as in : Page XXXX

Regards antman

Last edited by antman; 09-21-2012 at 11:51 AM.. Reason: solved
# 2  
Old 09-21-2012
Is there any pattern so we can find page ends here..?
then use that pattern below.

Code:
awk '/pattern/{a++;$0=$0"\nPage N0-"a}1' file

# 3  
Old 09-21-2012
Thanks! The pattern that exists is the 0C character in hex ( a form feed) not any visible text and I don't know how to put that in /pattern/
# 4  
Old 09-21-2012
Quote:
Originally Posted by antman
The pattern that exists is the 0C character in hex
can you please provide input file..

Last edited by pamu; 09-21-2012 at 05:51 AM..
# 5  
Old 09-21-2012
With a danger of it being reformated by the forum...
Code:
BIC Standard Subject Categories Version 1.1

August 2002

BOOK INDUSTRY COMMUNICATION

© Copyright BIC & Nielsen Book Services Limited - 2002

BIC Standard Subject Categories and Qualifiers

Version 1.1 (August 2002)

BIC STANDARD SUBJECT CATEGORIES Version 1.1 September 2002
Background
The BIC Standard Subject Categories have not been updated since July 1998 when Version 1 was released. It remains the intention of the Review Committee to release an extensively overhauled Version 2. The major aims of Version 2 will be the removal or amelioration of all parts of the scheme that have a perceived bias towards the UK (and to a lesser extent, towards the English language), and a rationalisation of the code hierarchy to ensure that top level categories are meaningful and form groups of subjects of comparable importance wherever possible. Generally, the aim is to position the BIC Standard Subject Categories scheme as a coherent scheme for global use, rather than an ad hoc response to UK publishing needs. As part of this process, interest and involvement from agencies in other countries may be sought. Thus, significant further changes * to both content and structure * may be required for Version 2, depending on external factors such as the need to accommodate national variations or convergence with any parallel schemes. This is likely to be a lengthy process.

Version 1.1
To prepare the ground for Version 2, and to address current shortcomings of the scheme in the short term, an interim version * Version 1.1 * has been released. This version makes no attempt to tackle the major issues of UK bias and structural inconsistencies, but is limited to: · the addition of essential and requested new categories (eg "e-commerce"); · the relocation of existing categories to more useful or intuitive positions; · the re-wording or clarification of existing headings; · the deletion of redundant codes. This revision conforms to principles established at the time of the last review, namely: · no codes are re-used, ie with a different definition from that assigned in earlier versions; · Version 1.1 is launched along with documents summarising the changes and providing conversion instructions for users migrating their records from the previous version; · Version 1.1 is backwards-compatible.

Major Features of Version 1.1
Aside from assessing all submissions received from users since Version 1, the (increasingly virtual) committee paid particular attention to the Law section, in consultation with UK law book publishers and representatives of BIALL (British and Irish Association of Law Librarians). It was agreed that a major reworking is required for Version 2, but the changes here are restricted to important additions (eg "data protection law") in the English Law section. Other significant developments include: · a unified Mind Body Spirit, drawing together categories from various parts of the scheme; · a section on computer certification; · an expanded cookery section; · a revision of African language qualifiers; · qualifiers for South African examination and educational levels. Howard Willows Chair, BIC Standard Subject Categories Review Committee, September 2002


BIC Standard Subject Categories and Qualifiers

Version 1.1 (August 2002)

Table of Contents

BIC Standard Subject Categories
A C E F G H J K L M P R T U V W Y The arts ....................................................................................................................... 3 Language, literature and biography ........................................................................... 11 English language teaching (ELT)............................................................................... 14 Fiction ........................................................................................................................ 15 Reference, information and interdisciplinary subjects................................................ 17 Humanities ................................................................................................................ 19 Social sciences .......................................................................................................... 27 Economics, finance, business and industry ............................................................... 36 Law ............................................................................................................................ 40 Medicine ................................................................................................................... 47 Mathematics and science .......................................................................................... 52 Earth sciences, geography, environment, planning ................................................... 59 Technology, engineering, agriculture, veterinary science .......................................... 63 Computing and information technology ..................................................................... 68 Family, home and practical interests ......................................................................... 72 Sport, travel and leisure interests ............................................................................. 77 Children's and educational ........................................................................................ 82

BIC Standard Subject Qualifiers
1 2 3 4 Geographical ........................................................................................................... 106 Languages ............................................................................................................... 119 Time Periods............................................................................................................ 125 Educational Purpose................................................................................................ 126

- 2 BIC & Nielsen Book Services Limited - 2002

English for travel & communications




Which in hex looks like:
Code:
00000000h: 42 49 43 20 53 74 61 6E 64 61 72 64 20 53 75 62 ; BIC Standard Sub
00000010h: 6A 65 63 74 20 43 61 74 65 67 6F 72 69 65 73 20 ; ject Categories 
00000020h: 56 65 72 73 69 6F 6E 20 31 2E 31 0D 0A 0D 0A 41 ; Version 1.1....A
00000030h: 75 67 75 73 74 20 32 30 30 32 0D 0A 0D 0A 42 4F ; ugust 2002....BO
00000040h: 4F 4B 20 49 4E 44 55 53 54 52 59 20 43 4F 4D 4D ; OK INDUSTRY COMM
00000050h: 55 4E 49 43 41 54 49 4F 4E 0D 0A 0D 0A A9 20 43 ; UNICATION....© C
00000060h: 6F 70 79 72 69 67 68 74 20 42 49 43 20 26 20 4E ; opyright BIC & N
00000070h: 69 65 6C 73 65 6E 20 42 6F 6F 6B 20 53 65 72 76 ; ielsen Book Serv
00000080h: 69 63 65 73 20 4C 69 6D 69 74 65 64 20 2D 20 32 ; ices Limited - 2
00000090h: 30 30 32 0D 0A 0D 0A 0C 42 49 43 20 53 74 61 6E ; 002.....BIC Stan
000000a0h: 64 61 72 64 20 53 75 62 6A 65 63 74 20 43 61 74 ; dard Subject Cat
000000b0h: 65 67 6F 72 69 65 73 20 61 6E 64 20 51 75 61 6C ; egories and Qual
000000c0h: 69 66 69 65 72 73 0D 0A 0D 0A 56 65 72 73 69 6F ; ifiers....Versio
000000d0h: 6E 20 31 2E 31 20 28 41 75 67 75 73 74 20 32 30 ; n 1.1 (August 20
000000e0h: 30 32 29 0D 0A 0D 0A 42 49 43 20 53 54 41 4E 44 ; 02)....BIC STAND
000000f0h: 41 52 44 20 53 55 42 4A 45 43 54 20 43 41 54 45 ; ARD SUBJECT CATE
00000100h: 47 4F 52 49 45 53 20 56 65 72 73 69 6F 6E 20 31 ; GORIES Version 1
00000110h: 2E 31 20 53 65 70 74 65 6D 62 65 72 20 32 30 30 ; .1 September 200
00000120h: 32 0D 0A 42 61 63 6B 67 72 6F 75 6E 64 0D 0A 54 ; 2..Background..T
00000130h: 68 65 20 42 49 43 20 53 74 61 6E 64 61 72 64 20 ; he BIC Standard 
00000140h: 53 75 62 6A 65 63 74 20 43 61 74 65 67 6F 72 69 ; Subject Categori
00000150h: 65 73 20 68 61 76 65 20 6E 6F 74 20 62 65 65 6E ; es have not been
00000160h: 20 75 70 64 61 74 65 64 20 73 69 6E 63 65 20 4A ;  updated since J
00000170h: 75 6C 79 20 31 39 39 38 20 77 68 65 6E 20 56 65 ; uly 1998 when Ve
00000180h: 72 73 69 6F 6E 20 31 20 77 61 73 20 72 65 6C 65 ; rsion 1 was rele
00000190h: 61 73 65 64 2E 20 49 74 20 72 65 6D 61 69 6E 73 ; ased. It remains
000001a0h: 20 74 68 65 20 69 6E 74 65 6E 74 69 6F 6E 20 6F ;  the intention o
000001b0h: 66 20 74 68 65 20 52 65 76 69 65 77 20 43 6F 6D ; f the Review Com
000001c0h: 6D 69 74 74 65 65 20 74 6F 20 72 65 6C 65 61 73 ; mittee to releas
000001d0h: 65 20 61 6E 20 65 78 74 65 6E 73 69 76 65 6C 79 ; e an extensively
000001e0h: 20 6F 76 65 72 68 61 75 6C 65 64 20 56 65 72 73 ;  overhauled Vers
000001f0h: 69 6F 6E 20 32 2E 20 54 68 65 20 6D 61 6A 6F 72 ; ion 2. The major
00000200h: 20 61 69 6D 73 20 6F 66 20 56 65 72 73 69 6F 6E ;  aims of Version
00000210h: 20 32 20 77 69 6C 6C 20 62 65 20 74 68 65 20 72 ;  2 will be the r
00000220h: 65 6D 6F 76 61 6C 20 6F 72 20 61 6D 65 6C 69 6F ; emoval or amelio
00000230h: 72 61 74 69 6F 6E 20 6F 66 20 61 6C 6C 20 70 61 ; ration of all pa
00000240h: 72 74 73 20 6F 66 20 74 68 65 20 73 63 68 65 6D ; rts of the schem
00000250h: 65 20 74 68 61 74 20 68 61 76 65 20 61 20 70 65 ; e that have a pe
00000260h: 72 63 65 69 76 65 64 20 62 69 61 73 20 74 6F 77 ; rceived bias tow
00000270h: 61 72 64 73 20 74 68 65 20 55 4B 20 28 61 6E 64 ; ards the UK (and
00000280h: 20 74 6F 20 61 20 6C 65 73 73 65 72 20 65 78 74 ;  to a lesser ext
00000290h: 65 6E 74 2C 20 74 6F 77 61 72 64 73 20 74 68 65 ; ent, towards the
000002a0h: 20 45 6E 67 6C 69 73 68 20 6C 61 6E 67 75 61 67 ;  English languag
000002b0h: 65 29 2C 20 61 6E 64 20 61 20 72 61 74 69 6F 6E ; e), and a ration
000002c0h: 61 6C 69 73 61 74 69 6F 6E 20 6F 66 20 74 68 65 ; alisation of the
000002d0h: 20 63 6F 64 65 20 68 69 65 72 61 72 63 68 79 20 ;  code hierarchy 
000002e0h: 74 6F 20 65 6E 73 75 72 65 20 74 68 61 74 20 74 ; to ensure that t
000002f0h: 6F 70 20 6C 65 76 65 6C 20 63 61 74 65 67 6F 72 ; op level categor
00000300h: 69 65 73 20 61 72 65 20 6D 65 61 6E 69 6E 67 66 ; ies are meaningf
00000310h: 75 6C 20 61 6E 64 20 66 6F 72 6D 20 67 72 6F 75 ; ul and form grou
00000320h: 70 73 20 6F 66 20 73 75 62 6A 65 63 74 73 20 6F ; ps of subjects o
00000330h: 66 20 63 6F 6D 70 61 72 61 62 6C 65 20 69 6D 70 ; f comparable imp
00000340h: 6F 72 74 61 6E 63 65 20 77 68 65 72 65 76 65 72 ; ortance wherever
00000350h: 20 70 6F 73 73 69 62 6C 65 2E 20 47 65 6E 65 72 ;  possible. Gener
00000360h: 61 6C 6C 79 2C 20 74 68 65 20 61 69 6D 20 69 73 ; ally, the aim is
00000370h: 20 74 6F 20 70 6F 73 69 74 69 6F 6E 20 74 68 65 ;  to position the
00000380h: 20 42 49 43 20 53 74 61 6E 64 61 72 64 20 53 75 ;  BIC Standard Su
00000390h: 62 6A 65 63 74 20 43 61 74 65 67 6F 72 69 65 73 ; bject Categories
000003a0h: 20 73 63 68 65 6D 65 20 61 73 20 61 20 63 6F 68 ;  scheme as a coh
000003b0h: 65 72 65 6E 74 20 73 63 68 65 6D 65 20 66 6F 72 ; erent scheme for
000003c0h: 20 67 6C 6F 62 61 6C 20 75 73 65 2C 20 72 61 74 ;  global use, rat
000003d0h: 68 65 72 20 74 68 61 6E 20 61 6E 20 61 64 20 68 ; her than an ad h
000003e0h: 6F 63 20 72 65 73 70 6F 6E 73 65 20 74 6F 20 55 ; oc response to U
000003f0h: 4B 20 70 75 62 6C 69 73 68 69 6E 67 20 6E 65 65 ; K publishing nee
00000400h: 64 73 2E 20 41 73 20 70 61 72 74 20 6F 66 20 74 ; ds. As part of t
00000410h: 68 69 73 20 70 72 6F 63 65 73 73 2C 20 69 6E 74 ; his process, int
00000420h: 65 72 65 73 74 20 61 6E 64 20 69 6E 76 6F 6C 76 ; erest and involv
00000430h: 65 6D 65 6E 74 20 66 72 6F 6D 20 61 67 65 6E 63 ; ement from agenc
00000440h: 69 65 73 20 69 6E 20 6F 74 68 65 72 20 63 6F 75 ; ies in other cou
00000450h: 6E 74 72 69 65 73 20 6D 61 79 20 62 65 20 73 6F ; ntries may be so
00000460h: 75 67 68 74 2E 20 54 68 75 73 2C 20 73 69 67 6E ; ught. Thus, sign
00000470h: 69 66 69 63 61 6E 74 20 66 75 72 74 68 65 72 20 ; ificant further 
00000480h: 63 68 61 6E 67 65 73 20 AD 20 74 6F 20 62 6F 74 ; changes * to bot
00000490h: 68 20 63 6F 6E 74 65 6E 74 20 61 6E 64 20 73 74 ; h content and st
000004a0h: 72 75 63 74 75 72 65 20 AD 20 6D 61 79 20 62 65 ; ructure * may be
000004b0h: 20 72 65 71 75 69 72 65 64 20 66 6F 72 20 56 65 ;  required for Ve
000004c0h: 72 73 69 6F 6E 20 32 2C 20 64 65 70 65 6E 64 69 ; rsion 2, dependi
000004d0h: 6E 67 20 6F 6E 20 65 78 74 65 72 6E 61 6C 20 66 ; ng on external f
000004e0h: 61 63 74 6F 72 73 20 73 75 63 68 20 61 73 20 74 ; actors such as t
000004f0h: 68 65 20 6E 65 65 64 20 74 6F 20 61 63 63 6F 6D ; he need to accom
00000500h: 6D 6F 64 61 74 65 20 6E 61 74 69 6F 6E 61 6C 20 ; modate national 
00000510h: 76 61 72 69 61 74 69 6F 6E 73 20 6F 72 20 63 6F ; variations or co
00000520h: 6E 76 65 72 67 65 6E 63 65 20 77 69 74 68 20 61 ; nvergence with a
00000530h: 6E 79 20 70 61 72 61 6C 6C 65 6C 20 73 63 68 65 ; ny parallel sche
00000540h: 6D 65 73 2E 20 54 68 69 73 20 69 73 20 6C 69 6B ; mes. This is lik
00000550h: 65 6C 79 20 74 6F 20 62 65 20 61 20 6C 65 6E 67 ; ely to be a leng
00000560h: 74 68 79 20 70 72 6F 63 65 73 73 2E 0D 0A 0D 0A ; thy process.....
00000570h: 56 65 72 73 69 6F 6E 20 31 2E 31 0D 0A 54 6F 20 ; Version 1.1..To 
00000580h: 70 72 65 70 61 72 65 20 74 68 65 20 67 72 6F 75 ; prepare the grou
00000590h: 6E 64 20 66 6F 72 20 56 65 72 73 69 6F 6E 20 32 ; nd for Version 2
000005a0h: 2C 20 61 6E 64 20 74 6F 20 61 64 64 72 65 73 73 ; , and to address
000005b0h: 20 63 75 72 72 65 6E 74 20 73 68 6F 72 74 63 6F ;  current shortco
000005c0h: 6D 69 6E 67 73 20 6F 66 20 74 68 65 20 73 63 68 ; mings of the sch
000005d0h: 65 6D 65 20 69 6E 20 74 68 65 20 73 68 6F 72 74 ; eme in the short
000005e0h: 20 74 65 72 6D 2C 20 61 6E 20 69 6E 74 65 72 69 ;  term, an interi
000005f0h: 6D 20 76 65 72 73 69 6F 6E 20 AD 20 56 65 72 73 ; m version * Vers
00000600h: 69 6F 6E 20 31 2E 31 20 AD 20 68 61 73 20 62 65 ; ion 1.1 * has be
00000610h: 65 6E 20 72 65 6C 65 61 73 65 64 2E 20 54 68 69 ; en released. Thi
00000620h: 73 20 76 65 72 73 69 6F 6E 20 6D 61 6B 65 73 20 ; s version makes 
00000630h: 6E 6F 20 61 74 74 65 6D 70 74 20 74 6F 20 74 61 ; no attempt to ta
00000640h: 63 6B 6C 65 20 74 68 65 20 6D 61 6A 6F 72 20 69 ; ckle the major i
00000650h: 73 73 75 65 73 20 6F 66 20 55 4B 20 62 69 61 73 ; ssues of UK bias
00000660h: 20 61 6E 64 20 73 74 72 75 63 74 75 72 61 6C 20 ;  and structural 
00000670h: 69 6E 63 6F 6E 73 69 73 74 65 6E 63 69 65 73 2C ; inconsistencies,
00000680h: 20 62 75 74 20 69 73 20 6C 69 6D 69 74 65 64 20 ;  but is limited 
00000690h: 74 6F 3A 20 B7 20 74 68 65 20 61 64 64 69 74 69 ; to: · the additi
000006a0h: 6F 6E 20 6F 66 20 65 73 73 65 6E 74 69 61 6C 20 ; on of essential 
000006b0h: 61 6E 64 20 72 65 71 75 65 73 74 65 64 20 6E 65 ; and requested ne
000006c0h: 77 20 63 61 74 65 67 6F 72 69 65 73 20 28 65 67 ; w categories (eg
000006d0h: 20 22 65 2D 63 6F 6D 6D 65 72 63 65 22 29 3B 20 ;  "e-commerce"); 
000006e0h: B7 20 74 68 65 20 72 65 6C 6F 63 61 74 69 6F 6E ; · the relocation
000006f0h: 20 6F 66 20 65 78 69 73 74 69 6E 67 20 63 61 74 ;  of existing cat
00000700h: 65 67 6F 72 69 65 73 20 74 6F 20 6D 6F 72 65 20 ; egories to more 
00000710h: 75 73 65 66 75 6C 20 6F 72 20 69 6E 74 75 69 74 ; useful or intuit
00000720h: 69 76 65 20 70 6F 73 69 74 69 6F 6E 73 3B 20 B7 ; ive positions; ·
00000730h: 20 74 68 65 20 72 65 2D 77 6F 72 64 69 6E 67 20 ;  the re-wording 
00000740h: 6F 72 20 63 6C 61 72 69 66 69 63 61 74 69 6F 6E ; or clarification
00000750h: 20 6F 66 20 65 78 69 73 74 69 6E 67 20 68 65 61 ;  of existing hea
00000760h: 64 69 6E 67 73 3B 20 B7 20 74 68 65 20 64 65 6C ; dings; · the del
00000770h: 65 74 69 6F 6E 20 6F 66 20 72 65 64 75 6E 64 61 ; etion of redunda
00000780h: 6E 74 20 63 6F 64 65 73 2E 20 54 68 69 73 20 72 ; nt codes. This r
00000790h: 65 76 69 73 69 6F 6E 20 63 6F 6E 66 6F 72 6D 73 ; evision conforms
000007a0h: 20 74 6F 20 70 72 69 6E 63 69 70 6C 65 73 20 65 ;  to principles e
000007b0h: 73 74 61 62 6C 69 73 68 65 64 20 61 74 20 74 68 ; stablished at th
000007c0h: 65 20 74 69 6D 65 20 6F 66 20 74 68 65 20 6C 61 ; e time of the la
000007d0h: 73 74 20 72 65 76 69 65 77 2C 20 6E 61 6D 65 6C ; st review, namel
000007e0h: 79 3A 20 B7 20 6E 6F 20 63 6F 64 65 73 20 61 72 ; y: · no codes ar
000007f0h: 65 20 72 65 2D 75 73 65 64 2C 20 69 65 20 77 69 ; e re-used, ie wi
00000800h: 74 68 20 61 20 64 69 66 66 65 72 65 6E 74 20 64 ; th a different d
00000810h: 65 66 69 6E 69 74 69 6F 6E 20 66 72 6F 6D 20 74 ; efinition from t
00000820h: 68 61 74 20 61 73 73 69 67 6E 65 64 20 69 6E 20 ; hat assigned in 
00000830h: 65 61 72 6C 69 65 72 20 76 65 72 73 69 6F 6E 73 ; earlier versions
00000840h: 3B 20 B7 20 56 65 72 73 69 6F 6E 20 31 2E 31 20 ; ; · Version 1.1 
00000850h: 69 73 20 6C 61 75 6E 63 68 65 64 20 61 6C 6F 6E ; is launched alon
00000860h: 67 20 77 69 74 68 20 64 6F 63 75 6D 65 6E 74 73 ; g with documents
00000870h: 20 73 75 6D 6D 61 72 69 73 69 6E 67 20 74 68 65 ;  summarising the
00000880h: 20 63 68 61 6E 67 65 73 20 61 6E 64 20 70 72 6F ;  changes and pro
00000890h: 76 69 64 69 6E 67 20 63 6F 6E 76 65 72 73 69 6F ; viding conversio
000008a0h: 6E 20 69 6E 73 74 72 75 63 74 69 6F 6E 73 20 66 ; n instructions f
000008b0h: 6F 72 20 75 73 65 72 73 20 6D 69 67 72 61 74 69 ; or users migrati
000008c0h: 6E 67 20 74 68 65 69 72 20 72 65 63 6F 72 64 73 ; ng their records
000008d0h: 20 66 72 6F 6D 20 74 68 65 20 70 72 65 76 69 6F ;  from the previo
000008e0h: 75 73 20 76 65 72 73 69 6F 6E 3B 20 B7 20 56 65 ; us version; · Ve
000008f0h: 72 73 69 6F 6E 20 31 2E 31 20 69 73 20 62 61 63 ; rsion 1.1 is bac
00000900h: 6B 77 61 72 64 73 2D 63 6F 6D 70 61 74 69 62 6C ; kwards-compatibl
00000910h: 65 2E 0D 0A 0D 0A 4D 61 6A 6F 72 20 46 65 61 74 ; e.....Major Feat
00000920h: 75 72 65 73 20 6F 66 20 56 65 72 73 69 6F 6E 20 ; ures of Version 
00000930h: 31 2E 31 0D 0A 41 73 69 64 65 20 66 72 6F 6D 20 ; 1.1..Aside from 
00000940h: 61 73 73 65 73 73 69 6E 67 20 61 6C 6C 20 73 75 ; assessing all su
00000950h: 62 6D 69 73 73 69 6F 6E 73 20 72 65 63 65 69 76 ; bmissions receiv
00000960h: 65 64 20 66 72 6F 6D 20 75 73 65 72 73 20 73 69 ; ed from users si
00000970h: 6E 63 65 20 56 65 72 73 69 6F 6E 20 31 2C 20 74 ; nce Version 1, t
00000980h: 68 65 20 28 69 6E 63 72 65 61 73 69 6E 67 6C 79 ; he (increasingly
00000990h: 20 76 69 72 74 75 61 6C 29 20 63 6F 6D 6D 69 74 ;  virtual) commit
000009a0h: 74 65 65 20 70 61 69 64 20 70 61 72 74 69 63 75 ; tee paid particu
000009b0h: 6C 61 72 20 61 74 74 65 6E 74 69 6F 6E 20 74 6F ; lar attention to
000009c0h: 20 74 68 65 20 4C 61 77 20 73 65 63 74 69 6F 6E ;  the Law section
000009d0h: 2C 20 69 6E 20 63 6F 6E 73 75 6C 74 61 74 69 6F ; , in consultatio
000009e0h: 6E 20 77 69 74 68 20 55 4B 20 6C 61 77 20 62 6F ; n with UK law bo
000009f0h: 6F 6B 20 70 75 62 6C 69 73 68 65 72 73 20 61 6E ; ok publishers an
00000a00h: 64 20 72 65 70 72 65 73 65 6E 74 61 74 69 76 65 ; d representative
00000a10h: 73 20 6F 66 20 42 49 41 4C 4C 20 28 42 72 69 74 ; s of BIALL (Brit
00000a20h: 69 73 68 20 61 6E 64 20 49 72 69 73 68 20 41 73 ; ish and Irish As
00000a30h: 73 6F 63 69 61 74 69 6F 6E 20 6F 66 20 4C 61 77 ; sociation of Law
00000a40h: 20 4C 69 62 72 61 72 69 61 6E 73 29 2E 20 49 74 ;  Librarians). It
00000a50h: 20 77 61 73 20 61 67 72 65 65 64 20 74 68 61 74 ;  was agreed that
00000a60h: 20 61 20 6D 61 6A 6F 72 20 72 65 77 6F 72 6B 69 ;  a major reworki
00000a70h: 6E 67 20 69 73 20 72 65 71 75 69 72 65 64 20 66 ; ng is required f
00000a80h: 6F 72 20 56 65 72 73 69 6F 6E 20 32 2C 20 62 75 ; or Version 2, bu
00000a90h: 74 20 74 68 65 20 63 68 61 6E 67 65 73 20 68 65 ; t the changes he
00000aa0h: 72 65 20 61 72 65 20 72 65 73 74 72 69 63 74 65 ; re are restricte
00000ab0h: 64 20 74 6F 20 69 6D 70 6F 72 74 61 6E 74 20 61 ; d to important a
00000ac0h: 64 64 69 74 69 6F 6E 73 20 28 65 67 20 22 64 61 ; dditions (eg "da
00000ad0h: 74 61 20 70 72 6F 74 65 63 74 69 6F 6E 20 6C 61 ; ta protection la
00000ae0h: 77 22 29 20 69 6E 20 74 68 65 20 45 6E 67 6C 69 ; w") in the Engli
00000af0h: 73 68 20 4C 61 77 20 73 65 63 74 69 6F 6E 2E 20 ; sh Law section. 
00000b00h: 4F 74 68 65 72 20 73 69 67 6E 69 66 69 63 61 6E ; Other significan
00000b10h: 74 20 64 65 76 65 6C 6F 70 6D 65 6E 74 73 20 69 ; t developments i
00000b20h: 6E 63 6C 75 64 65 3A 20 B7 20 61 20 75 6E 69 66 ; nclude: · a unif
00000b30h: 69 65 64 20 4D 69 6E 64 20 42 6F 64 79 20 53 70 ; ied Mind Body Sp
00000b40h: 69 72 69 74 2C 20 64 72 61 77 69 6E 67 20 74 6F ; irit, drawing to
00000b50h: 67 65 74 68 65 72 20 63 61 74 65 67 6F 72 69 65 ; gether categorie
00000b60h: 73 20 66 72 6F 6D 20 76 61 72 69 6F 75 73 20 70 ; s from various p
00000b70h: 61 72 74 73 20 6F 66 20 74 68 65 20 73 63 68 65 ; arts of the sche
00000b80h: 6D 65 3B 20 B7 20 61 20 73 65 63 74 69 6F 6E 20 ; me; · a section 
00000b90h: 6F 6E 20 63 6F 6D 70 75 74 65 72 20 63 65 72 74 ; on computer cert
00000ba0h: 69 66 69 63 61 74 69 6F 6E 3B 20 B7 20 61 6E 20 ; ification; · an 
00000bb0h: 65 78 70 61 6E 64 65 64 20 63 6F 6F 6B 65 72 79 ; expanded cookery
00000bc0h: 20 73 65 63 74 69 6F 6E 3B 20 B7 20 61 20 72 65 ;  section; · a re
00000bd0h: 76 69 73 69 6F 6E 20 6F 66 20 41 66 72 69 63 61 ; vision of Africa
00000be0h: 6E 20 6C 61 6E 67 75 61 67 65 20 71 75 61 6C 69 ; n language quali
00000bf0h: 66 69 65 72 73 3B 20 B7 20 71 75 61 6C 69 66 69 ; fiers; · qualifi
00000c00h: 65 72 73 20 66 6F 72 20 53 6F 75 74 68 20 41 66 ; ers for South Af
00000c10h: 72 69 63 61 6E 20 65 78 61 6D 69 6E 61 74 69 6F ; rican examinatio
00000c20h: 6E 20 61 6E 64 20 65 64 75 63 61 74 69 6F 6E 61 ; n and educationa
00000c30h: 6C 20 6C 65 76 65 6C 73 2E 20 48 6F 77 61 72 64 ; l levels. Howard
00000c40h: 20 57 69 6C 6C 6F 77 73 20 43 68 61 69 72 2C 20 ;  Willows Chair, 
00000c50h: 42 49 43 20 53 74 61 6E 64 61 72 64 20 53 75 62 ; BIC Standard Sub
00000c60h: 6A 65 63 74 20 43 61 74 65 67 6F 72 69 65 73 20 ; ject Categories 
00000c70h: 52 65 76 69 65 77 20 43 6F 6D 6D 69 74 74 65 65 ; Review Committee
00000c80h: 2C 20 53 65 70 74 65 6D 62 65 72 20 32 30 30 32 ; , September 2002
00000c90h: 0D 0A 0D 0A 0D 0A 0C 42 49 43 20 53 74 61 6E 64 ; .......BIC Stand
00000ca0h: 61 72 64 20 53 75 62 6A 65 63 74 20 43 61 74 65 ; ard Subject Cate
00000cb0h: 67 6F 72 69 65 73 20 61 6E 64 20 51 75 61 6C 69 ; gories and Quali
00000cc0h: 66 69 65 72 73 0D 0A 0D 0A 56 65 72 73 69 6F 6E ; fiers....Version
00000cd0h: 20 31 2E 31 20 28 41 75 67 75 73 74 20 32 30 30 ;  1.1 (August 200
00000ce0h: 32 29 0D 0A 0D 0A 54 61 62 6C 65 20 6F 66 20 43 ; 2)....Table of C
00000cf0h: 6F 6E 74 65 6E 74 73 0D 0A 0D 0A 42 49 43 20 53 ; ontents....BIC S
00000d00h: 74 61 6E 64 61 72 64 20 53 75 62 6A 65 63 74 20 ; tandard Subject 
00000d10h: 43 61 74 65 67 6F 72 69 65 73 0D 0A 41 20 43 20 ; Categories..A C 
00000d20h: 45 20 46 20 47 20 48 20 4A 20 4B 20 4C 20 4D 20 ; E F G H J K L M 
00000d30h: 50 20 52 20 54 20 55 20 56 20 57 20 59 20 54 68 ; P R T U V W Y Th
00000d40h: 65 20 61 72 74 73 20 2E 2E 2E 2E 2E 2E 2E 2E 2E ; e arts .........
00000d50h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00000d60h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00000d70h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00000d80h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00000d90h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00000da0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00000db0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 20 33 ; .............. 3
00000dc0h: 20 4C 61 6E 67 75 61 67 65 2C 20 6C 69 74 65 72 ;  Language, liter
00000dd0h: 61 74 75 72 65 20 61 6E 64 20 62 69 6F 67 72 61 ; ature and biogra
00000de0h: 70 68 79 20 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; phy ............
00000df0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00000e00h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00000e10h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00000e20h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 20 ; ............... 
00000e30h: 31 31 20 45 6E 67 6C 69 73 68 20 6C 61 6E 67 75 ; 11 English langu
00000e40h: 61 67 65 20 74 65 61 63 68 69 6E 67 20 28 45 4C ; age teaching (EL
00000e50h: 54 29 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; T)..............
00000e60h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00000e70h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00000e80h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00000e90h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00000ea0h: 2E 20 31 34 20 46 69 63 74 69 6F 6E 20 2E 2E 2E ; . 14 Fiction ...
00000eb0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00000ec0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00000ed0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00000ee0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00000ef0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00000f00h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00000f10h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00000f20h: 2E 2E 2E 2E 2E 20 31 35 20 52 65 66 65 72 65 6E ; ..... 15 Referen
00000f30h: 63 65 2C 20 69 6E 66 6F 72 6D 61 74 69 6F 6E 20 ; ce, information 
00000f40h: 61 6E 64 20 69 6E 74 65 72 64 69 73 63 69 70 6C ; and interdiscipl
00000f50h: 69 6E 61 72 79 20 73 75 62 6A 65 63 74 73 2E 2E ; inary subjects..
00000f60h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00000f70h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00000f80h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 20 31 ; .............. 1
00000f90h: 37 20 48 75 6D 61 6E 69 74 69 65 73 20 2E 2E 2E ; 7 Humanities ...
00000fa0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00000fb0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00000fc0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00000fd0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00000fe0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00000ff0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001000h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 20 31 39 ; ............. 19
00001010h: 20 53 6F 63 69 61 6C 20 73 63 69 65 6E 63 65 73 ;  Social sciences
00001020h: 20 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ;  ...............
00001030h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001040h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001050h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001060h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001070h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001080h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 20 32 37 20 45 ; ........... 27 E
00001090h: 63 6F 6E 6F 6D 69 63 73 2C 20 66 69 6E 61 6E 63 ; conomics, financ
000010a0h: 65 2C 20 62 75 73 69 6E 65 73 73 20 61 6E 64 20 ; e, business and 
000010b0h: 69 6E 64 75 73 74 72 79 20 2E 2E 2E 2E 2E 2E 2E ; industry .......
000010c0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
000010d0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
000010e0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
000010f0h: 2E 2E 2E 2E 2E 2E 2E 2E 20 33 36 20 4C 61 77 20 ; ........ 36 Law 
00001100h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001110h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001120h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001130h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001140h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001150h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001160h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001170h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 20 34 30 20 ; ............ 40 
00001180h: 4D 65 64 69 63 69 6E 65 20 2E 2E 2E 2E 2E 2E 2E ; Medicine .......
00001190h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
000011a0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
000011b0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
000011c0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
000011d0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
000011e0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
000011f0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 20 34 37 20 ; ............ 47 
00001200h: 4D 61 74 68 65 6D 61 74 69 63 73 20 61 6E 64 20 ; Mathematics and 
00001210h: 73 63 69 65 6E 63 65 20 2E 2E 2E 2E 2E 2E 2E 2E ; science ........
00001220h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001230h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001240h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001250h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001260h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001270h: 2E 2E 20 35 32 20 45 61 72 74 68 20 73 63 69 65 ; .. 52 Earth scie
00001280h: 6E 63 65 73 2C 20 67 65 6F 67 72 61 70 68 79 2C ; nces, geography,
00001290h: 20 65 6E 76 69 72 6F 6E 6D 65 6E 74 2C 20 70 6C ;  environment, pl
000012a0h: 61 6E 6E 69 6E 67 20 2E 2E 2E 2E 2E 2E 2E 2E 2E ; anning .........
000012b0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
000012c0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
000012d0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 20 35 39 20 54 65 ; .......... 59 Te
000012e0h: 63 68 6E 6F 6C 6F 67 79 2C 20 65 6E 67 69 6E 65 ; chnology, engine
000012f0h: 65 72 69 6E 67 2C 20 61 67 72 69 63 75 6C 74 75 ; ering, agricultu
00001300h: 72 65 2C 20 76 65 74 65 72 69 6E 61 72 79 20 73 ; re, veterinary s
00001310h: 63 69 65 6E 63 65 20 2E 2E 2E 2E 2E 2E 2E 2E 2E ; cience .........
00001320h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001330h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001340h: 2E 20 36 33 20 43 6F 6D 70 75 74 69 6E 67 20 61 ; . 63 Computing a
00001350h: 6E 64 20 69 6E 66 6F 72 6D 61 74 69 6F 6E 20 74 ; nd information t
00001360h: 65 63 68 6E 6F 6C 6F 67 79 20 2E 2E 2E 2E 2E 2E ; echnology ......
00001370h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001380h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001390h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
000013a0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 20 ; ............... 
000013b0h: 36 38 20 46 61 6D 69 6C 79 2C 20 68 6F 6D 65 20 ; 68 Family, home 
000013c0h: 61 6E 64 20 70 72 61 63 74 69 63 61 6C 20 69 6E ; and practical in
000013d0h: 74 65 72 65 73 74 73 20 2E 2E 2E 2E 2E 2E 2E 2E ; terests ........
000013e0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
000013f0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001400h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001410h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001420h: 2E 20 37 32 20 53 70 6F 72 74 2C 20 74 72 61 76 ; . 72 Sport, trav
00001430h: 65 6C 20 61 6E 64 20 6C 65 69 73 75 72 65 20 69 ; el and leisure i
00001440h: 6E 74 65 72 65 73 74 73 20 2E 2E 2E 2E 2E 2E 2E ; nterests .......
00001450h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001460h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001470h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001480h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001490h: 2E 2E 2E 2E 2E 2E 20 37 37 20 43 68 69 6C 64 72 ; ...... 77 Childr
000014a0h: 65 6E 27 73 20 61 6E 64 20 65 64 75 63 61 74 69 ; en's and educati
000014b0h: 6F 6E 61 6C 20 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; onal ...........
000014c0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
000014d0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
000014e0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
000014f0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001500h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 20 38 32 ; ............. 82
00001510h: 0D 0A 0D 0A 42 49 43 20 53 74 61 6E 64 61 72 64 ; ....BIC Standard
00001520h: 20 53 75 62 6A 65 63 74 20 51 75 61 6C 69 66 69 ;  Subject Qualifi
00001530h: 65 72 73 0D 0A 31 20 32 20 33 20 34 20 47 65 6F ; ers..1 2 3 4 Geo
00001540h: 67 72 61 70 68 69 63 61 6C 20 2E 2E 2E 2E 2E 2E ; graphical ......
00001550h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001560h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001570h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001580h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001590h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
000015a0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
000015b0h: 2E 2E 2E 2E 2E 20 31 30 36 20 4C 61 6E 67 75 61 ; ..... 106 Langua
000015c0h: 67 65 73 20 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ges ............
000015d0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
000015e0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
000015f0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001600h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001610h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001620h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001630h: 2E 2E 2E 20 31 31 39 20 54 69 6D 65 20 50 65 72 ; ... 119 Time Per
00001640h: 69 6F 64 73 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; iods............
00001650h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001660h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001670h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001680h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001690h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
000016a0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
000016b0h: 20 31 32 35 20 45 64 75 63 61 74 69 6F 6E 61 6C ;  125 Educational
000016c0h: 20 50 75 72 70 6F 73 65 2E 2E 2E 2E 2E 2E 2E 2E ;  Purpose........
000016d0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
000016e0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
000016f0h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001700h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001710h: 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E 2E ; ................
00001720h: 2E 2E 2E 2E 2E 2E 2E 2E 20 31 32 36 0D 0A 0D 0A ; ........ 126....
00001730h: 2D 20 32 20 42 49 43 20 26 20 4E 69 65 6C 73 65 ; - 2 BIC & Nielse
00001740h: 6E 20 42 6F 6F 6B 20 53 65 72 76 69 63 65 73 20 ; n Book Services 
00001750h: 4C 69 6D 69 74 65 64 20 2D 20 32 30 30 32 0D 0A ; Limited - 2002..
00001760h: 0D 0A 45 6E 67 6C 69 73 68 20 66 6F 72 20 74 72 ; ..English for tr
00001770h: 61 76 65 6C 20 26 20 63 6F 6D 6D 75 6E 69 63 61 ; avel & communica
00001780h: 74 69 6F 6E 73 0D 0A 0D 0A 0D 0A 0C             ; tions.......

The 0C at the end is the form feed character that changes the page...

---------- Post updated at 03:55 AM ---------- Previous update was at 03:52 AM ----------

Before that 0C character we need to add the page number
# 6  
Old 09-21-2012
Try this.. It will print page number before OC pattern..

Code:
awk '/^[0-9][0-9][0-9]/{a++;print "Page N0-"a}1' file

and 

awk '/^000/{a++;print "Page N0-"a}1' file

as per your given data...

00000020h:
you can use above pattern.. to get the pattern...

[0-9] - 0-9 is range for numeric
[a-z] - for a-z range
[0-9a-z] - for alphanumeric range

Hope this helps you...Smilie

Last edited by pamu; 09-21-2012 at 06:08 AM..
This User Gave Thanks to pamu For This Post:
# 7  
Old 09-21-2012
An I have uploaded the sample here j.mpSLASHantmanpagenumber. Forum does not allow me to add urls Smilie

---------- Post updated at 04:14 AM ---------- Previous update was at 04:04 AM ----------

I see in the awk documentation the form feed character can be expressed as \f .
Will try
Code:
awk '/^\f/{a++;print "Page N0-"a}1' file

Hope it makes sense...
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Awk: Page number with total number of pages, EG Page 1 of 5

So I've worked how to add page numbers based on regex. It's using the footer text. How do we get the total amount added so we have page number with the total number of pages? Desired output: Page No:1 of 5 Thanks in advance. (15 Replies)
Discussion started by: tugar
15 Replies

2. UNIX for Dummies Questions & Answers

Page breaks and line breaks

Hi All, Need an urgent solution to an issue . We have created a ksh file or shell script which generates 1 DAT file. the DAT file contains extract of a select statement . Now the issue is , when we are executing the ksh file , the output is coimng with page breaks and line breaks . We have... (4 Replies)
Discussion started by: Ayaskant
4 Replies

3. Shell Programming and Scripting

Print multiple copies page by page using lp command

Hi I have a pdf file that is being generated using the rwrun command in the shell script. I then have the lp command in the shell script to print the same pdf file. Suppose there are 4 pages in the pdf file , I need to print 2 copies of the first page, 2 copies of the second page , then 2... (7 Replies)
Discussion started by: megha2525
7 Replies

4. UNIX for Dummies Questions & Answers

display command output page per page

Good afternoon, I wonder how i could use unix commands to ease the reading of long command result output ? like the "php -i" or any other command that returns a long answer. I could not find the right terms to Google it or search the forum. Therefore I bother you with this question. ... (3 Replies)
Discussion started by: Mat_k
3 Replies

5. Shell Programming and Scripting

How to input a number in a web page and pass to a script?

I am working on an embedded linux router and trying to make a webpage where the user can input a desired number of CPE and have a script update that number on the router. I have a CLI where I can log in and type the following to change that number echo "20">/proc/net/dbrctl/maxcpe which then... (7 Replies)
Discussion started by: BobTheBulldog
7 Replies

6. Shell Programming and Scripting

Help on page breaks

Hi, I am new to Unix (AIX). I have a header (in a text file) that needs to be wrtitten on all the pages of a result file (text file). After the header is written, data needs to be read from a file A(text file) and inserted to the result file. If the number of lines reaches 80 in a page, page... (1 Reply)
Discussion started by: simhasuri
1 Replies

7. Shell Programming and Scripting

How to remove page breaks from a flat file???

Hi All, I get a flat file with its last field data splitting onto a new line.I got this program from Vgersh which when run would cancatenate the split data back to the end of the previous records.But this program fails when it encounters a page break between the split data and the previous... (5 Replies)
Discussion started by: kumarsaravana_s
5 Replies

8. UNIX for Dummies Questions & Answers

adding a man page

I was wonderiong if ther is a way for a user to add a man page specific to thier account. similar to copying the .1 or .1.gz to /usr/share/man/man1 "cp *.1.gz /usr/share/man/man1". Except for using another folder as I don't have access to /usr/share/man/man1. I would think that this might involve... (1 Reply)
Discussion started by: jacob358
1 Replies

9. Programming

Page Breaks

Hi, I have a program in Pro*c when I run it I have no problem with the output but when it runs via the at command and except the output has page breaks every 66 lines. I don't want those page breaks to be in the output. any idea? (9 Replies)
Discussion started by: rama71
9 Replies

10. Shell Programming and Scripting

Insert page breaks into .csv file

I have large .csv files that I need to get page breaks into. I am taking comma delimited files of over a million records and putting them into a pdf file. Is there a way, using sed or otherwise, to insert some type of page break character into my file? (2 Replies)
Discussion started by: welsht
2 Replies
Login or Register to Ask a Question