Elasticsearch cluster on Docker, Terraformed for ECS
Elasticsearch is just a full text search engine. I had a good experience with it in my past. Many applications now a days are highly dependent on it. Whether...
Elasticsearch is just a full text search engine. I had a good experience with it in my past. Many applications now a days are highly dependent on it. Whether...
FILE="/tmp/count.txt" echo -n "Enter directory name : " read dname ls $dname > $FILE echo "No of files in directory : $(grep [^*$] $FILE -c)" rm -f $FILE