script – POFTUT

HTML script Tag Tutorial with Examples

HTML Tag Tutorial with Examples

HTML <script> is a tag used to put some executable code which is named as a script into the web age or HTML code. <script> tag will contain different scripts that can be JavaScript or WebGL GLSL programming language or provide a reference to external scripts to be loaded and executed. <script> Tag and JavaScript … Read more

How To Run/Execute Python Script Tutorial with Examples?

How To Run/Execute Python Script Tutorial with Examples?

Python is popular programming and scripting language. This popularity causes different use cases for Python scripts and codes. In this tutorial, we will learn what is a Python script, how to run Python code and script from the command line, GUI, IDe, etc. What Is Python Script? The python script is some code written in … Read more

Batch File Commands For Windows MSDOS

Windows provides different system management modes like interactive and batch. Batch management mode is used like running scripts without or little user interaction. Batch File and Extension Batch files are text files which contains MSDOS and Windows commands and tools. Batch files generally uses bat or cmd extensions.But other extensions can be used as long … Read more

How To Download, Install, and Use Python Idle Editor?

How To Download, Install, and Use Python Idle Editor?

Python is a popular programming language used by a lot of people from different professions. Python is a scripting language supported by different platforms and operating systems like Windows, Linux, MacOS, BSD, etc. Developing and running python can be done in different ways but in a practical way, we generally need some editor. Python Idle … Read more

Nmap Script and Version Scan

[rps-include post=6632] Nmap provides script scanning which gives nmap very flexible behavior to get more information and test about the target host. This feature is called Nmap Scripting Engine (NSE). NSE gives user the ability to write scripts for test. Lua is programming language supported by NSE. NSE have some vulnerability detection scripts too. NSE … Read more

Linux Bash Exec Command Tutorial with Examples To Execute Command

Linux bash provides different commands for daily usage. execcommand is mainly used to run commands in a bash environment. We can also provide parameters to this command. Syntax Syntax of exec command is like below. exec OPTIONS COMMAND ARGUMENTS Run Program or Script Directly Without using exec we can run programs and scripts too. But we … Read more

Debugging Linux Bash Scripts

[rps-include post=6835] While writing bash scripts we generally expects some results and provide these results to other scripts. But things goes not well as we expect. So we need to see under the hood and what is happening while script is running. Debugging is inspecting bash scripts to see what is wrong with script or … Read more

Introduction To Bash Scripting

[rps-include post=6835] Bash history goes to the early 1970’s when first bash version is released with mainstream Unix operating system. Bash is then ported into a lot of different platforms like Ultrix, AIX, SunOS, Linux. Bash is the shell and command interpreter for Linux,Unix,BSD etc. operating systems. Bash is the acronym of Bourne-Again Shell . … Read more

What is Microsoft Powershell ? How Can I Automate Tasks?

PowerShell is a task automation and configuration management provided by Microsoft for Windows Operating systems. Powershell provides interactive shell for issuing commands. Powershell platform also provides scripting language. Powershell have access to the underlying operating system components like COM , WMI WS-Management etc. Powershell is developed in .Net framework. Versions Powershell started developing in 2003 but it takes … Read more