https://www.codeply.com/go/BeGG18qglJ/bootstrap-4-tooltip-style
<div class="container">
<br>
<a href="" data-toggle="tooltip" data-placement="right" title="Tooltip on right">Tooltip</a>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Creating Directory if not exists. | |
#!/bin/bash | |
if [ ! -d /home/mlzboy/b2c2/shared/db ] | |
then | |
mkdir -p /home/mlzboy/b2c2/shared/db | |
fi | |
## Get Current Date as YYYY-mm-dd |