0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Erlangのインタラクティブシェル(erl)を終了する

Posted at

erlを終了させるパターン。

  • 「Ctrl + C」を2回入力して終了する。
erl1
1> 1 + 1.
2
2>
BREAK: (a)bort (c)ontinue (p)roc info (i)nfo (l)oaded
       (v)ersion (k)ill (D)b-tables (d)istribution
host:~ name$
  • 「Ctrl + G」を入力後にqとReturnキーを入力する。
erl2
1>  1 + 1.
2
2>
User switch command
 --> q
host:~ name$
  • 「q().」を入力後、Returnキーを入力する。
erl3
1> 1 + 2.
3
2> q().
ok
host:~ name$

以上なり。

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?