Different ways to create a file in *nix
Jul 26, 2023 · 2 min read · 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...
Join discussion