2015-09-27 13 views
12

Tôi mới sử dụng Spark và cố gắng tìm ra cách sử dụng vỏ Spark.Dòng lệnh của hệ vỏ Spark

Nhìn vào tài liệu trang web của Spark và nó không hiển thị cách tạo thư mục hoặc cách xem tất cả các tệp của tôi trong vỏ tia lửa. Nếu bất cứ ai có thể giúp tôi, tôi sẽ đánh giá cao nó.

Trả lời

36

Trong ngữ cảnh này, bạn có thể giả định rằng vỏ Spark chỉ là một số Scala REPL bình thường để áp dụng các quy tắc tương tự. Bạn có thể nhận danh sách các lệnh có sẵn bằng cách sử dụng :help.

Welcome to 
     ____    __ 
    /__/__ ___ _____/ /__ 
    _\ \/ _ \/ _ `/ __/ '_/ 
    /___/ .__/\_,_/_/ /_/\_\ version 2.3.0 
     /_/ 

Using Scala version 2.11.8 (OpenJDK 64-Bit Server VM, Java 1.8.0_151) 
Type in expressions to have them evaluated. 
Type :help for more information. 

scala> :help 
All commands can be abbreviated, e.g., :he instead of :help. 
:edit <id>|<line>  edit history 
:help [command]   print this summary or command-specific help 
:history [num]   show the history (optional num is commands to show) 
:h? <string>    search the history 
:imports [name name ...] show import history, identifying sources of names 
:implicits [-v]   show the implicits in scope 
:javap <path|class>  disassemble a file or class name 
:line <id>|<line>  place line(s) at the end of history 
:load <path>    interpret lines in a file 
:paste [-raw] [path]  enter paste mode or paste a file 
:power     enable power user mode 
:quit     exit the interpreter 
:replay [options]  reset the repl and replay all previous commands 
:require <path>   add a jar to the classpath 
:reset [options]   reset the repl to its initial state, forgetting all session entries 
:save <path>    save replayable session to a file 
:sh <command line>  run a shell command (result is implicitly => List[String]) 
:settings <options>  update compiler options, if possible; see reset 
:silent     disable/enable automatic printing of results 
:type [-v] <expr>  display the type of an expression without evaluating it 
:kind [-v] <expr>  display the kind of expression's type 
:warnings    show the suppressed warnings from the most recent line which had any 

Như bạn thấy ở trên, bạn có thể gọi các lệnh shell bằng cách sử dụng :sh. Ví dụ:

scala> :sh mkdir foobar 
res0: scala.tools.nsc.interpreter.ProcessResult = `mkdir foobar` (0 lines, exit 0) 

scala> :sh touch foobar/foo 
res1: scala.tools.nsc.interpreter.ProcessResult = `touch foobar/foo` (0 lines, exit 0) 

scala> :sh touch foobar/bar 
res2: scala.tools.nsc.interpreter.ProcessResult = `touch foobar/bar` (0 lines, exit 0) 

scala> :sh ls foobar 
res3: scala.tools.nsc.interpreter.ProcessResult = `ls foobar` (2 lines, exit 0) 

scala> res3.line foreach println 
line lines 

scala> res3.lines foreach println 
bar 
foo 
+1

tôi nhận được lỗi này lạ - bất kỳ ý tưởng tại sao 'scala>: ls sh res5: scala.tools.nsc.interpreter.ProcessResult = 'ls' (2 dòng, exit 0)' ' scala> res5 foreach println' ': 12: lỗi: giá trị foreach không phải là thành viên của scala.tools.nsc.interpreter.ProcessResult' ' res5 foreach println' – WoodChopper

+3

WoodChopper chỉ cần thực hiện 'res5.lines foreach println ' –

+0

' res3 foreach println' không hoạt động và phải là 'res3.lines foreach println'. –

Các vấn đề liên quan