Advertisement
Guest User

Untitled

a guest
May 23rd, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. #!/bin/bash
  2. mkdir project
  3. cd project
  4. touch index.html
  5. touch styles.css
  6. touch README.md
  7. echo '<link rel="stylesheet" href="styles.css"><h1>Hello World!</h1>' > index.html
  8. echo 'h1{color:red;font-family:sans-serif;text-decoration:underline;}' > styles.css
  9. echo 'Hello World!' > README.md
  10. read -p [enter]
  11. cat "Congratulations"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement