[Solved] how do I basic script with linux? [closed]
#!/bin/bash is called the shebang (you missed the leading #). It tells which program will execute your script. clear is for clearing screen. echo outputs following argument to the standard output (your terminal by default). But you must not surround your string with parenthesis as it’s used for grouping command in a sub-shell. If you … Read more