Skip to content

Commit

Permalink
Fixes formatting issues
Browse files Browse the repository at this point in the history
Fixes a formatting issues for chmod section
  • Loading branch information
jeremyabbott committed Sep 6, 2017
1 parent 83530f6 commit 9fe0d5c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions chapter-01/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -387,15 +387,15 @@ to know what program to run your file with. Let's try to run it!

That didn't work. We have to use the dot-syntax for things that can run;

$ ./hello.fsx
-bash: ./hello.fsx: Permission denied
$ ./hello.fsx
-bash: ./hello.fsx: Permission denied

This time – a different error message. Bash is telling us that it's not
permitted to execute the fsx file.

$ chmod +x hello.fsx
$ ./hello.fsx
[20:06:35 INF] Smooth! Suave listener started in 65.762 with binding 127.0.0.1:8083
$ chmod +x hello.fsx
$ ./hello.fsx
[20:06:35 INF] Smooth! Suave listener started in 65.762 with binding 127.0.0.1:8083

### Collecting the IP numbers

Expand Down

0 comments on commit 9fe0d5c

Please sign in to comment.