首页 > 其他分享 >如何退出scla命令行界面和scala常用命令

如何退出scla命令行界面和scala常用命令

时间:2023-08-05 20:25:32浏览次数:46  
标签:reset scla help show scala file 常用命令 history

对于初学者来说,有些东西要一点点来,尤其是基础,不能着急,无论你是小白,还是大白,有一些基础也好,多看基础命令对你来说都会有帮助的

一 常用命令

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

scala> 

二 退出

scala> :quit

[hadoop@master conf]$

使用sc.stop结束进程,然后按ctrl+z来退出

标签:reset,scla,help,show,scala,file,常用命令,history
From: https://www.cnblogs.com/grow-with-the-times/p/17608537.html

相关文章

  • 随笔-常用命令-nmcli
    转载:https://access.redhat.com/documentation/zh-cn/red_hat_enterprise_linux/8/html/configuring_and_managing_networking/proc_connecting-to-a-wifi-network-by-using-nmcli_assembly_managing-wifi-connections10.2.使用nmcli连接到wifi网络您可以使用nmcli实用程......
  • Scala并发
     Runnable/CallableRunnable只有一个没有返回值的方法traitRunnable{defrun():Unit}Callable的方法和run类似,只不过它有一个返回值traitCallable[V]{defcall():V}线程Scala的并发是建立在Java的并发模型上的。在Sun的JVM上,对于一个IO密集型的任务,我们可以在单机......
  • Scala——文件和正则表达式
    读取文件importscala.io.Sourcevalsource=Source.fromFile(fileName,"UTF-8")//第一个参数可以是文件名或java.io.File//如果没有第二个参数将会使用当前平台缺省的字符编码vallineIterator=source.getLines//结果是一个迭代器//迭代器可以......
  • vim常用命令总结(转)
    新词发现是NLP的基础任务之一,通过对已有语料进行挖掘,从中识别出新词。新词发现也可称为未登录词识别,严格来讲,新词是指随时代发展而新出现或旧词新用的词语。同时,我认为特定领域的专有名词也可归属于新词的范畴。何出此言呢?通常我们会很容易找到通用领域的词表,但要找到某个具......
  • Scala的基本使用
    @目录Scala的基本使用一、基础语法1.1变量1.1.1var和val1.1.2自动类型推断1.2数据类型1.2.1基础数据类型1.2.2增强数据类型1.3操作符二、流程控制2.1if表达式2.2语句终结符2.3循环2.3.1for循环2.3.2这里面的to可以换成until2.3.3for循环针对字符串还可以用2.3.4注意......
  • Linux常用命令
    Linux常用命令——接上篇系统信息显示机器的处理器架构:arch显示正在使用的内核版本:uname-r显示硬件系统部件(SMBios/DMI):dmidecode-q罗列一个磁盘的架构特性:hdparm-i/dev/sda在磁盘上执行测试性读取操作:hdparm-tT/dev/sda显示CPUinfo的信息:cat/proc/cpuinfo显示中断:cat/pr......
  • ensp常用命令
    ensp常用命令最近在学习华为服务器相关知识,所以避免不了使用ensp做网络拓扑练习,而指令才让我头疼,所以就把自己常用的命令先记录下来。基础命令命令缩写含义system-viewsys进入quitq退出sysnamesysname重命名vlan命令缩写含义displayvlan......
  • docker 镜像,容器常用命令
    .docker,docer-ce,docker-compsedocker:管理镜像,管理容器docker-compse:对docker容器集群的快速编排。一:容器生命周期相关命令:命令 说明dockerrun-d-px:x--namexxx镜像id 以后台方式运行容器dockercreate--namexxxnginx:latest 创建一个新的容器,但是不启动docker......
  • dotnet 常用命令
    dotnet常用命令:在Dockerfile中会用到dotnetrestore-恢复项目的依赖项和工具。使用NuGet还原依赖项以及在project文件中指定的特定于项目的工具。默认情况下会并行执行对依赖项和工具的还原dotnetnew-创建项目dotnetbuild-编译代码dotnetbuild-serverdotnetr......
  • centos 常用命令
    --查看空间使用情况df-h 查看当前目录空间占用情况du-h--max-depth=1--释放空间lsof-n/|grepdeleted|awk'(print$2]'|xargskill-9删除第880条记录history-d880重复上条命令!!查看系统日志配置cat/etc/audisp/plugins.d/syslog.conf查找系统日志配置find/-nam......