Related Topics
1. Shell script comment variable and wildcard
As we probably all know, shell script is badly required, when you thought to automate something in your operating system. We are here using Born shell(sh) and bash in linux ubuntu. cat /etc/shells #it will give us following shells /bin/sh Continue reading1. Shell script comment variable and wildcard→
3. Shell comparison operator & reference
CommandDescriptionExample&Run the previous command in the backgroundls &&&Logical ANDif [ “$X” -ge “0” ] && [ “$X” -le “9”]||Logical ORif [ “$X” -lt “0” ] || [ “$X” -gt “9” ]^Start of linegrep “^X”$End of linegrep “X$”=String equality (cf. -eq)if Continue reading3. Shell comparison operator & reference→
2. Shell script loop & conditional statement
Like other programming languages, shell script also have same loop concept, let us look at different types of loop syntax how it will work in shell scripts. For loop #!/bin/sh for x in hi 1 * 2 A bye do Continue reading2. Shell script loop & conditional statement→
MongoDB auto increment field
This article for those who just jump into MongoDB ocean from RDBMS world. First of all, I can tell you do not start finding stuff which usually support by RDBMS into MongoDB. When you decided to start learning MongoDB then Continue readingMongoDB auto increment field→
MongoDB 4.4 new features
This version of MongoDB has some path breaking features, few are badly required and most of them has given for enhancement of its features. There are many features, but I am talking about in this article which is more important Continue readingMongoDB 4.4 new features→
Suggestions