Search posts, tags, users, and pages
Ajay Patel
Learning DevOps | Experienced Android Developer | Certified Professional Scrum Master
Are you tired of manually managing your passwords in a text file? Do you want to automate the process and make it more secure? In this tutorial, we'll build a simple password manager using shell scripting. Before we start, make sure that you have a b...
Veg
#!/bin/bash (correct). #!bin/bash (not correct). Or maybe you wanted make comment in code. But with #!bin/bash : I got error: bad interpreter: bin/bash: no such file or directory. So #!/bin/bash worked for me.
Yes #!/bin/bash is correct.that is typing mistake thank you for correcting.
Veg
#!/bin/bash (correct). #!bin/bash (not correct). Or maybe you wanted make comment in code. But with #!bin/bash : I got error: bad interpreter: bin/bash: no such file or directory. So #!/bin/bash worked for me.