How is html code read, compared to say python?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How is html code read, compared to say python?
# 8  
Old 12-11-2017
HTML has a kind of “shebang” ... its the HTML directive that tells the browser what version of HTML is encoded.

So Yes HTML does not have a shebang that designates the script interpreter. HTML does have a designator for HTML interpretation, as does XML etc.
# 9  
Old 12-11-2017
HTML sort of has a shebang and sort of doesn't. It has something web browsers understand, but doesn't have a UNIX shebang, so ./file.html would just default to 'shell script' and quit with loads of errors.

If you added the shebang #!/usr/bin/php it would work, but only because PHP was designed to operate on HTML!

In short, HTML is not handled at the shell level in UNIX. What you're looking for is in Apache or whatever other web server you have.
# 10  
Old 12-13-2017
Most has already been said, but to summarise:
  1. html - read as a file - read by a browser from a filesystem and rendered into a doc
  2. html - read as a file - read by a web server and streamed to network socket (remote connection)
  3. html - read as a stream - read by a browser from a network socket (website connection) and rendered into a doc
  4. html - read as a stream - passed by a cgi script to a web server to be streamed to a remote connection
  • html is text.
  • An html doc content is sandwiched between the tags <html> </html>


One thing though - html rendering or streaming applications use an additional tag to switch them into "html handling mode" (like a tag that printer streams needed to go into postscript or pcl printing mode)


If you write a cgi in shell/perl/php your text stream needs this at the front:

Here is an example.



<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "blah blah had to remove the link">



I bet there are more options but these are the basics as far as I can tell.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Feed python with read line in shell

Hello, I am running under ubuntu 14.04. I have a python file bringing requested data. When I run, it asks me to enter query info. After that, it gives the data if anything matched can be found. What I need to accomplish is, instead of entering the requested data from keyboard, to put all... (11 Replies)
Discussion started by: baris35
11 Replies

2. Shell Programming and Scripting

Need python script to read a file

more data.txt user1:psw1:Moni,Admi user2:psw2:Depl,Moni,Admi I wish to perform the following task on the data.txt in my python script 1. read line by line data.txt 2. Once you read the first line split it using delimiter ":" i.e "user1" "psw1" & "Moni,Admi" 3. split the 3rd string i.e... (4 Replies)
Discussion started by: mohtashims
4 Replies

3. UNIX for Dummies Questions & Answers

Read data from excel and upload into html page

Hi, I have requirement for automation, wanna confirm whether is it possible in shell scripting. 1) Need to read data from excel sheet 2) And upload the details in html page I know first requirement is possible by converting excel into csv form, but not sure about the second one. If... (6 Replies)
Discussion started by: stew
6 Replies

4. Shell Programming and Scripting

**python** unable to read the background color in python

I am working on requirement on spreadsheet in python scripting. I have a spreadsheet containing cell values and with background color. I am able to read the value value but unable to get the background color of that particular cell. Actually my requirement is to read the cell value along... (1 Reply)
Discussion started by: giridhar276
1 Replies

5. Shell Programming and Scripting

Python Binary File Read and Parse

Hi to everyone :), i have a challenge right now in python that for now needs a bit of help in one part of the c0de. The task is create a new file with the name of the file defined by the ASCII content between the 3 byte and the 16 byte that is parsed from the binary file, the file is over 20 Mb i... (0 Replies)
Discussion started by: drd0spt
0 Replies

6. Shell Programming and Scripting

[SOLVED] Read html attachment from /var/mail

Hi, I am receiving an email to the server with a html attachment. When I check the /var/mail the attachment is showing as junk characters. I want to move that html file to a particular location in that server. Please help me. Regards Neethu (4 Replies)
Discussion started by: Neethu
4 Replies

7. Shell Programming and Scripting

Read html attachment

Hi, I will get an email with a html attachment. I want to copy that html file to server in a particular location. Is it possible to do this.. If yes could you please help me on this.. Regards Neethu (1 Reply)
Discussion started by: Neethu
1 Replies

8. Shell Programming and Scripting

Read html and get specific value

Hello guys :D I have a specific small html file which looks like this: <td><a href="/wiki/File:ABC_red_le_route.jpg" class="image" title="Chicago 'L' 2600 series train"><img alt="Chicago 'L' 2600 series train" src="example.com/random_image.com" width="550" height="255" /></a></td> I want... (3 Replies)
Discussion started by: hakermania
3 Replies

9. Shell Programming and Scripting

Read a file and put it in HTML format

Hi, I have one file as follows and I need to read this file contents in an HTML format. And send html file to some mail ids using sendmail. Communications Pvt Ltd Report AccountId Name Code IdBill Balance ... (3 Replies)
Discussion started by: Kattoor
3 Replies

10. UNIX for Advanced & Expert Users

Python, HTML, and Unix

Hi Experts, This may be the wrong category for posting my question, or it could be the perfect category to post. I have no idea how difficult my problem is. I have python 2.3 installed in my server machine. I am trying to create a web page with python script in it. Now this can be a .html... (1 Reply)
Discussion started by: davidfrank
1 Replies
Login or Register to Ask a Question