mardi 27 mars 2012

Commande débogage script shell


Affiche la commande avant le résultat (commande set -x)

[bob@centos ~]$ cat script.sh
#!/bin/bash

set -x
pwd
set +x
pwd


[bob@centos ~]$ ./script.sh
+ pwd
/home/bob
+ set +x
/home/bob
[bob@centos ~]$

Aucun commentaire:

Enregistrer un commentaire

Comment ajouter une route statique sur une distribution Linux Ubuntu

Pour ajouter une route statique au démarrage d'Ubuntu, voici le fichier à modifier. Dans l'exemple on ajoute une route pour joindre ...