Si votre email correspond à un compte, vous recevrez un lien de réinitialisation.
I can use a IF statement responding when a file is empty with:if [ ! - file1 ]; then action1 ;fi
But I need a specific action when 2 specific files are empty in the sametime then:if [ ! -s file1 -a (! -s file2 ) ]; then action2 ;fipas besoin de parentheses
didn't worked and I tried a couple of variations without success. Whatis the proper form?
I can use a IF statement responding when a file is empty with: if [ ! - file1 ]; then action1 ;fi
But I need a specific action when 2 specific files are empty in the same time then: if [ ! -s file1 -a (! -s file2 ) ]; then action2 ;fi pas besoin de parentheses
didn't worked and I tried a couple of variations without success. What is the proper form?