Thursday, 21 April 2022

Execute bash shell in Makefile

 status:

    eval $$(docker-machine env dev); docker-compose ps

No comments:

Post a Comment

How to check if a file contains a specific string using Bash

 In case if you want to check whether file does not contain a specific string, you can do it as follows. if ! grep -q SomeString "$File...