How can I stop a running R command in linux other than with Ctrl + C?

前端 未结 4 2017
孤城傲影
孤城傲影 2020-12-24 05:52

I\'m running R in interactive mode under Linux and mistakenly typed in a command that takes forever to run. I usually stop it using Ctrl + C. But it do

4条回答
  •  伪装坚强ぢ
    2020-12-24 06:26

    Ctrl + C is not working. Somehow Ctrl + \ will stop the process.

    But there is a function in R programming to quit. You can try q() on REPL. It worked for me.

    q()
    

提交回复
热议问题