Merge Multiple html files into one


 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers Merge Multiple html files into one
# 1  
Old 04-03-2019
Merge Multiple html files into one

Hi all
I have written some code to write my output in html.

As i have multiple servers, need to generate single html file. but my code is generating html file for each server.

I have merged the files using below code.
Code:
cat /home/*_FinalData.html > /home/MergedFinalData.html

But how to avoid multiple table headers.
All the files are having same headers.
Please let me know how to do that

Thank you

Last edited by Snehasish; 04-03-2019 at 05:49 AM..
# 2  
Old 04-03-2019
Well, there is not a single web developer on the planet who has any "real professional" experience with web development over the past 5 to 10 years who would approach this problem as you have.

Web developers do not "combine HTML files" from various servers to create a single web page.

We create a single HTML page (which is only the presentation logic) and use other logic (for example asynchronous javascript or AJAX for short) we query the servers for their data and inject that data into our HTML app and display the data.

In the past 5 years or so, give or take, the data is generally returned from the server as a JSON object, complete with status (like success or failure) for the server-side query.

We don't use AWK or SED to process this data and we don't use CURL or WGET to get the remote data, in general.

We mostly use Javascript for AJAX calls (and other logic). I guess that 99.99% of the world web developers use this approach (or a similar approach with Python, etc).

So, if you are serious about creating a "server dashboard" with dials and indicators and text about server status, you should use Javascript, generally speaking. Maybe Python if you don't like JS.

Furthermore, most people do not use plain-ole Javascript or Python for these kinds of tasks in this era (when dinosaurs do not roam the web); but then again Javascript (Plain Ole Javascript) is evolving quickly and there are very easy Javascript calls like fetch() to get remote JSON data.

Web developers generally use a library like jQuery (but that has fallen out of favor, honestly) or a more popular JS framework, using some JS libs or framework like Vue (my favorite), Angular or React, to build web apps these days.

What you are doing, or attempting to do, is something that was done +/- 15 years ago, when the web was young, not now, when the web is very mature and the toolsets to develop web apps are very rich and robust.

Even universities and vocational schools do not teach 'the old ways" of the web anymore!

You might as well be trying to chop down a tree with a sharp rock like a caveman!

Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Merge multiple files with common header

Hi all, Say i have multiple files x1 x2 x3 x4, all with common header (date, time, year, age),, How can I merge them to one singe file "X" in shell scripting Thanks for your suggestions. (2 Replies)
Discussion started by: msarguru
2 Replies

2. Shell Programming and Scripting

Merge columns from multiple files

Hello and Good day I have a lot of files with same number of rows and columns.$2 and $3 are the same in all files . I need to merge $2,$3,$6 from first file and $6 from another files. File1: $1 $2 $3 $4 $5 $6... (8 Replies)
Discussion started by: ali.seifaddini
8 Replies

3. Shell Programming and Scripting

Merge the multiple text files into one file

Hi All, I am trying to merge all the text files into one file using below snippet cat /home/Temp/Test/Log/*.txt >> all.txt But it seems it is not working. I have multiple files like Output_ServerName1.txt, Output_ServreName2.txt I want to merge each file into one single file and... (6 Replies)
Discussion started by: sharsour
6 Replies

4. UNIX for Dummies Questions & Answers

Merge columns from multiple files

Hi all, I've searched the web for a long time trying to figure out how to merge columns from multiple files. I know paste will append columns like so: paste file1 file2 file3 file4 file5 ... But this becomes inconvenient when you want to append a large number of files into a single file. ... (2 Replies)
Discussion started by: torchij
2 Replies

5. Shell Programming and Scripting

Merge multiple files found in config file

I have a config file with a bunch of these type of blocks: <concat destfile="${standard.js.file}" append="true"> <filelist dir="${js.dir}/foo" files="foo.js, foo2.js"/> <filelist dir="${js.dir}" files="foo3.js"/> <filelist dir="${js.dir}/bar/js"... (11 Replies)
Discussion started by: Validatorian
11 Replies

6. UNIX for Dummies Questions & Answers

Merge multiple files

Hi All, How can I merge 3rd column of multiple files into 1 file, the column header in the merged file being the name of the file from which the 3rd column was taken. The first 2 columns of all the files are exactly same. Thanks for your help ! (3 Replies)
Discussion started by: newbie83
3 Replies

7. UNIX for Advanced & Expert Users

merge two column multiple files into one

Hi I have multiple files each with two columns and I need to combine all those file into a tab delimited file. (multiple entry with same name separated by a comma) The content of the files are as follows: --- file1.txt: name var1 aaa xx aaa gg bbb yy ddd zz --- file2.txt ... (8 Replies)
Discussion started by: mary271
8 Replies

8. Shell Programming and Scripting

Merge Multiple Files and Transpose

Looking to join three files and then transpose some columns from multiple rows into a single row. File Info: FIELD TERMINATED BY '^' ENCLOSED BY '~' LINE TERMINATED BY '\r\n' FIRST FILE (FOOD_DES.txt) ~01001~^~0100~^~Butter, salted~^~BUTTER,WITH... (2 Replies)
Discussion started by: mkastin
2 Replies

9. Shell Programming and Scripting

Help to merge multiple .sql files

Hello all, I have a shell script that uses multiple .sql files. These .sql files mainly contain Oracle SQL queries to pull fields from the database. I want to place all the contents of these .sql files in one .sql file and have some parameter sent based on which the respective block or query... (6 Replies)
Discussion started by: snvniranjanrao
6 Replies

10. UNIX for Advanced & Expert Users

Merge multiple .so files

Hi all, I am developing an application in Tcl, inwhich i have to load many modules written in C. I am converting those C modules into shared object(.so) files, and wrap it with my application using SWIG, for which i had the interface file. Now my question is, i have two different... (2 Replies)
Discussion started by: senthilvnr
2 Replies
Login or Register to Ask a Question