Skip to content

Commit

Permalink
minor tweak to MD tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
jkshenton committed Sep 17, 2024
1 parent a36e69a commit 9c2dc56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/workshop/09_md.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ As a simple example, we will explore the system discussed in the lecture -- the
Hint: try something like this:

```
grep ' N 1' N2.castep | awk '{print $4,$5,$6}' > N2.r1
grep ' N 2' N2.castep | awk '{print $4,$5,$6}' > N2.r2
grep ' N 1 ' N2.castep | awk '{print $4,$5,$6}' > N2.r1
grep ' N 2 ' N2.castep | awk '{print $4,$5,$6}' > N2.r2
paste N2.r1 N2.r2 | awk '{print c++,10.0*sqrt(($4-$11)^2+($5-$12)^2+($6-$13)^2)}' > N2.r12
```

Expand Down

0 comments on commit 9c2dc56

Please sign in to comment.