var

Recherche

Voici les résultats de votre recherche.

basics
3 Occurrences trouvées, Dernière modification :
etc/init.d/mydatabase clean_stop mydatabase_dump /var/db/db1 /mnt/fsrv0/backups/db1 logger -t SYSHALT "... variable(s) local). <code bash> myfunc() { local var=VALUE # alternative, only when used INSIDE a function declare var=VALUE ... } </code> The //local// keyword (or d
obselete
2 Occurrences trouvées, Dernière modification :
r defined variables. Don't use ''set -u''. | |''${var?msg}'' or ''${var:?msg}'' |Proper control flow and error handling |Like ''set -u'', this expansion c
scripting
2 Occurrences trouvées, Dernière modification :
#!/bin/bash # the prefix 'MY_' MY_LOG_DIRECTORY=/var/adm/ for file in "$MY_LOG_DIRECTORY"/*; do ech... ''case $WORD in ....'' * variable assignment: ''VAR=$WORD'' But quoting these is never a mistake. If