Different ways to create a file in *nix
You can create files in many ways, and we will go through most common ones.
echo
echo 'muffins!' > file
This method creates a file containing whatever echo outputted (in our case, it's muffins!). It works well, but be wary, it will overwrite an exis...
nerd-blogging.hashnode.dev2 min read