osx bash上的ruby – tree命令

前端之家收集整理的这篇文章主要介绍了osx bash上的ruby – tree命令前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在跟着一个名为 pry的红宝石宝石的 screen cast。在8:10,使用了.tree命令,我相信这是一个Unix命令。

它似乎在我的系统上工作:

[24] pry(main)> .tree
\Error: there was a problem executing system command: tree

我已经将问题追溯到here,其中pry引用了一个shell命令:

Pry::CommandSet.new do

  command(/\.(.*)/,"All text following a '.' is forwarded to the shell.",:listing => ".<shell command>") do |cmd|
    if cmd =~ /^cd\s+(.+)/i
      dest = $1
      begin
        Dir.chdir File.expand_path(dest)
      rescue Errno::ENOENT
        output.puts "No such directory: #{dest}"
      end

    else
      if !system(cmd)
        output.puts "Error: there was a problem executing system command: #{cmd}"
      end
    end
  end

从bash的上下文我尝试使用没有运气的命令树:

projects/sms(apps2)$ tree
-bash: tree: command not found
~/projects/sms(apps2)$ .tree
-bash: .tree: command not found

这看起来非常有用,我该如何得到这个命令?

使用 homebrew

酿造安装树

使用macports

sudo端口安装树

使用the source

Follow these directions.(注意事项;你应该使用有意义的标志/等)

< rant>所有系统都应该带有树;我用了很多我们可以将目录结构作为文本发布,而不是图片。< / rant>

原文链接:https://www.f2er.com/bash/388502.html

猜你在找的Bash相关文章