File tree 1 file changed +6
-4
lines changed
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
/** *****************************************
2
2
*
3
- * Get and run Ammonite (http://lihaoyi.github.io/Ammonite/#Ammonite-Shell):
3
+ * Get Ammonite (http://lihaoyi.github.io/Ammonite/#Ammonite-Shell):
4
4
* $ mkdir ~/.ammonite; curl -L -o ~/.ammonite/predef.scala http://git.io/vR04f
5
- * $ curl -L -o amm http://git.io/vR08A; chmod +x amm; ./amm
5
+ * $ curl -L -o amm http://git.io/vR08A; chmod +x amm
6
6
*
7
- * Run script:
8
- * @ load.exec(" fucking-coffee.scala")
7
+ * Run script
8
+ * $ ./amm fucking-coffee.scala
9
9
*
10
10
*******************************************/
11
11
12
12
import java .net ._
13
13
import java .io ._
14
14
import ammonite .ops ._
15
+ import ammonite .ops .ImplicitWd ._
15
16
16
17
val coffeeMachineIP = " 10.10.42.42"
17
18
val password = " 1234"
@@ -25,6 +26,7 @@ if ((%%who "-q").out.string.contains(sys.props("user.name"))) {
25
26
val out = new PrintWriter (telnet.getOutputStream, true )
26
27
val in = new BufferedReader (new InputStreamReader (telnet.getInputStream))
27
28
29
+ println(s " Wait for $delayBeforeBrew seconds " )
28
30
Thread .sleep(delayBeforeBrew * 1000 );
29
31
30
32
if (in.readLine == passwordPrompt){
You can’t perform that action at this time.
0 commit comments