7 lines
158 B
Bash
7 lines
158 B
Bash
#!/bin/bash
|
|
# Hello, World — your first script.
|
|
# Write the line "Hello, World" into a file called hello.txt
|
|
# in the current directory.
|
|
|
|
# Your code here.
|