如何在终端上执行命令?

时间:2016-01-01 00:52:21

标签: android windows android-studio command command-prompt

如果您无法打开链接,我需要执行这些命令才能从笔记本电脑中完全删除Android Studio。

require 'benchmark'

h = { abc: 'hello', 'another_key' => 123, 4567 => 'third' }
a = 1..10
many = 500_000

Benchmark.bm do |b|
  GC.start

  b.report("hash keys collect") do
    many.times do
      h.keys.collect(&:to_s)
    end
  end

  GC.start

  b.report("hash keys map") do
    many.times do
      h.keys.map(&:to_s)
    end
  end

  GC.start

  b.report("array collect") do
    many.times do
      a.collect(&:to_s)
    end
  end

  GC.start

  b.report("array map") do
    many.times do
      a.map(&:to_s)
    end
  end
end

当我在命令提示符下键入命令时,它会显示"' rm'不被识别为内部或外部命令,可操作程序或批处理文件。"。任何帮助表示赞赏。

2 个答案:

答案 0 :(得分:0)

rm是一个用于删除文件的Unix实用程序。如果您没有使用基于Unix的操作系统,如Linux或OSX,那么此指令可能不适合您。要卸载,只需转到Control Panel并像其他程序一样卸载。 Windows命令提示符的rm替代方法称为del。找到del的更多信息here

答案 1 :(得分:0)

更好的Windows命令行等效rm -rf

rmdir /s /q

或者,也许不那么好,但是有趣而翔实

echo y | rmdir /s

答案here中对此进行了讨论。在这里,我referenced“有趣且信息丰富”命令...

...早在命令没有抑制确认消息的选项时使用。只需ECHO所需的响应,然后将值传递到命令中即可。