background preloader

Command Line

Facebook Twitter

Perl Command-Line Options. Kernel Definition. The kernel is a program that constitutes the central core of a computer operating system. It has complete control over everything that occurs in the system. A kernel can be contrasted with a shell (such as bash, csh or ksh in Unix-like operating systems), which is the outermost part of an operating system and a program that interacts with user commands. The kernel itself does not interact directly with the user, but rather interacts with the shell and other programs as well as with the hardware devices on the system, including the processor (also called the central processing unit or CPU), memory and disk drives. The kernel is the first part of the operating system to load into memory during booting (i.e., system startup), and it remains there for the entire duration of the computer session because its services are required continuously.

When a computer crashes, it actually means the kernel has crashed. The kernel should not be confused with the BIOS (Basic Input/Output System). Petit tuto sur VI/VIM. =============================================================================== =============================================================================== Vim est un éditeur très puissant qui a trop de commandes pour pouvoir toutes les expliquer dans un cours comme celui-ci, qui est conçu pour en décrire suffisamment afin de vous permettre d'utiliser simplement Vim. Le temps requis pour suivre ce cours est d'environ 25 à 30 minutes, selon le temps que vous passerez à expérimenter. Les commandes utilisées dans les leçons modifieront le texte. Faites une copie de ce fichier afin de vous entraîner dessus (si vous avez lancé "vimtutor" ceci est déjà une copie).

Il est important de garder en tête que ce cours est conçu pour apprendre par la pratique. Cela signifie que vous devez exécuter les commandes pour les apprendre correctement. Si vous vous contentez de lire le texte, vous oublierez les commandes ! Leçon 1.1 : DÉPLACEMENT DU CURSEUR Leçon 1.2 : ENTRÉE ET SORTIE DE VIM 1. 1. 1. 1. What are PATH and other environment variables, and how can I set or use them. Commandes Linux | CommentCaMarche. What does source do. Source (command) Source is a Unix command that evaluates the file following the command, as a list of commands, executed in the current context.[1][2] Frequently the "current context" is a terminal window into which the user is typing commands during an interactive session.

The source command can be abbreviated as just a dot. Raccourcis shell. Niveau : Résumé : bash Comme disait si bien un grand maître comique, chose promise, chom dû. Voici donc un article en forme de mémo contenant les raccourcis que vous devriez savoir pour utiliser au mieux votre shell. Les raccourcis présentés ici sont ceux de bash, mais nombreux sont ceux qui marchent dans d'autres outils et en particulier tous ceux qui utilisent readline.

Certains fonctionnent aussi dans emacs. D'ailleurs, ces raccourcis ne fonctionnent en bash que si vous êtes en mode emacs (ce qui est le cas par défaut) . $ set -o vi $ set -o emacs Les raccourcis Esc-_ : ajoute le dernier argument de la dernière commande à la commande en cours. $ cat fichier $ rm <Esc-_> PS : notez que esc et alt sont interchangeables. BASH Programming - Introduction HOW-TO. Next Previous Contents BASH Programming - Introduction HOW-TO by Mike G mikkey at dynamo.com.ar Thu Jul 27 09:36:18 ART 2000 This article intends to help you to start programming basic-intermediate shell scripts. It does not intend to be an advanced document (see the title). I am NOT an expert nor guru shell programmer.

I decided to write this because I'll learn a lot and it might be useful to other people. 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 13.1 Ways Calling BASH 14.