Determine o caminho no qual o usuário está tentando iniciar o arquivo bin
# this will output the path the user is in actually # and you can use this aswell as a variable. echo $PWD
# This will search the whole filesystem for your file # in case you need this rather than the patch the user is in. # you can aswell make this a variable to put the whole into $() find / -name "nameof the bin file"
Verifique se ambos os arquivos existem nesse caminho (installer.bin & cert.ssl
Se os dois arquivos existirem, ative o bin e, se não, exiba a mensagem de aviso
if [ -e filename] # when the file exists then # do what you need to do else # output error message fi
Veja mais informações sobre os possíveis casos de IF aqui .