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?
# 1  
Old 12-10-2017
How is html code read, compared to say python?

so, the first line of bash, perl, python, ruby, and similar languages must contain the path to the interpreter...i.e. #!/bin/perl, or #!/bin/python. so in the case of a perl script, for instance, a perl script cannot and will never run if the perl program is not installed/present on the system. same thing with python and others.

now, im curious, how is html code being read? what program on the system (let's assume its a Unix system) must exist for an html page to be read and processed?
# 2  
Old 12-10-2017
By a web server. Apache on most Linux/Unix systems, and IIS (Internet Information Server) on Microsoft operating systems.
You can also open an html file with a web browser if you have read access to the file.
# 3  
Old 12-11-2017
HTML is “read” by parsing the markup language based on standards and rendering ths results.
# 4  
Old 12-11-2017
Also, web servers like Apache2 and ISS process HTTP , transferring (not processing) HTML.
# 5  
Old 12-11-2017
Quote:
Originally Posted by SkySmart
so, the first line of bash, perl, python, ruby, and similar languages must contain the path to the interpreter...i.e. #!/bin/perl, or #!/bin/python. so in the case of a perl script, for instance, a perl script cannot and will never run if the perl program is not installed/present on the system. same thing with python and others.

now, im curious, how is html code being read? what program on the system (let's assume its a Unix system) must exist for an html page to be read and processed?
Are you talking about in the context of a file manager? So you go into a folder and you can see by the icons that you have a perl script, or a python script, or an html file; and clicking on the icon will run the script or open the html file in a browser?

Andrew
# 6  
Old 12-11-2017
Actually, SkySmart was asking about the Shebang in scripts and comparing to HTML.

However, some of the things SkySmart said were not true, for example: "the first line of bash, perl, python, ruby, and similar languages must contain the path to the interpreter"...

This is not always true, as I can easily execute a PHP script from the command line by calling:

Code:
php filename.php

and the path to the interpreter is not required to execute the code. The same is true for most scripts when executed directly.
# 7  
Old 12-11-2017
HTML isn't a scripting language. It's not a programming language, but a markup language 'a system for annotating a document in a way that is syntactically distinguishable from the text' (see wikipedia). Therefor a shebang doesn't make any sense.
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