Writing in batch in text file ShowWriting in batch in text file
To write in a file text, you just have to use a redirect:
echo text > output_file.txt
To write in an existing file:
echo " Write at the end of the file ">> output_file.txt
Inserting text in a file ShowInserting text in a file
Introduction
Syntax
Introduction
It is sometimes useful to insert text in the header of one or more document (s) or in a specific part of the document (before or after a specific line).
The publisher of...
Renaming multiple files in batch ShowRenaming multiple files in batch
Native features
Using a third-party program
Renaming a large number of files can quickly become tedious. Fortunately, there are tools to automate this task in many cases:
Native features
On Windows...
Automatically Launch a program at PC startup ShowAutomatically Launch a program at PC startup
The problem
Solutions
Not touching the registry
By modifying the registry
Disable its launch
The problem
Some programs such as Mozilla Firefox, Internet Explorer or the e-mail programs...
Programming languages ShowProgramming language
A "programming language" is a language designed to describe a set of consecutive actions to be
executed by a computer. A programming language is therefore a practical way for us (humans) to give instructions to a...
Characteristics of programming languages ShowThere are many programming languages, each corresponding to specific needs (formula calculus, character string
processing, real-time, etc.) with each having specific characteristics and functionalities. Therefore, the choice of
programming language...
Introduction to object-oriented programming ShowA new programming concept
Extract from "Understanding Active X and OLE" by David Chappel
"In the last 35 years, designers of computer hardware have gone from designing machines the
size of a hangar to thin notebooks based on minuscule...