08. Shell Scripting Tutorial for Beginners - Logical 'AND' Operator

Publié le: 04 septembre 2017
sur la chaîne: MyShadowbook Programmer
38
1

The Logical AND "&&" is a boolean operator that executes following commands based on the outcome of previously executed commands.
Logical AND (&&) if [[expr1 && expr2]] Returns expr1 if it can be converted to false; otherwise, returns expr2. Thus, when used with Boolean values, && returns true if both operands are true; otherwise, returns false.

for using And operator use &&
if [ "$age" -gt 18] && ["$age" -lt 30 ]

The -a option provide an alternative compound condition test.
if [ "$age" -gt 18 -a "$age" -lt 30 ]

if [[ $condition1 && $condition2 ]] # Also works.
if [[ "$age" -gt 18 && "$age" -lt 30 ]]


Sur cette page du site, vous pouvez voir la vidéo en ligne 08. Shell Scripting Tutorial for Beginners - Logical 'AND' Operator durée heure minute seconde en bonne qualité , qui a été Téléchargé par l'utilisateur MyShadowbook Programmer 04 septembre 2017, Partagez le lien avec vos amis et connaissances, sur youtube cette vidéo a déjà été regardée 38 fois et il a aimé 1 téléspectateurs. Bon visionnage!