天天看点

Betty:和你的Linux说说话Betty:和你的Linux说说话

betty 是一个将类英语短语翻译成linux命令的开源工具。这个项目的主要目的是让大家可以通过输入自然语言来使用强大的linux系统。让我们来看一下它是怎么工作的。

Betty:和你的Linux说说话Betty:和你的Linux说说话

<a target="_blank"></a>

betty的安装非常简单直接。首先确认你已经安装了下面这些依赖包[lctt译注,需要安装至少ruby1.9以上版本]。

sudo apt-get install git curl ruby

yum install git curl ruby

现在用git工具把betty库clone到你自定义的任何路径。这里我克隆到我的home目录,例如 /home/sk/.

git clone https://github.com/pickhardt/betty

添加betty的别名到你的bashrc配置文件。

sudo nano ~/.bashrc

将下列行添加到文件的末尾:

alias betty="/home/sk/betty/main.rb"

确保你已经正确地设置好了betty的路径。

好了,现在是时候和betty好好地玩耍了。

你应该在英语短语之前加上单词“betty” [lctt译注,你自然可以用你的小甜心的名字来替换这个不是知道是谁的betty :&gt;]。你也许已经知道,如果我们想知道在系统中我们的用户名,应该运行下面的命令:

whoami

输出是这样的:

sk

如你所见,我当前登录的用户名是 sk. 现在我也可以通过下面的betty命令获取相同的结果。

betty whats my username

betty: running whoami

真的好酷,是不是?betty理解我输入的“whats my username”短语,然后运行“whoami”命令,最后输出结果。

让我们也来看其他命令。

如果你的输入不够准确,betty也能以多种方式回应你。例如,我们运行下面的命令:

betty whats my name

betty不确定她应该查找系统用户名还是用户全名。这种情况下,她会询问你多个问题来找到准确的结果。如你下面所见,betty问我想要运行哪一条命令(whoami 还是 finger $(whoami) | sed 's/.://;q')[lctt译注,需要你的系统已经安装finger]。我只想知道我的用户名,所以我选择数字1。

betty: okay, i have multiple ways to respond.

betty: enter the number of the command you want me to run, or n (no) if you don't want me to run any.

[1] whoami

gets your system username.

[2] finger $(whoami) | sed 's/.*: *//;q'

gets your full name.

1

如果你想要压缩一个文件或者文件夹,用下面的命令。例如,我想压缩我home目录下的“test”文件夹。

betty compress test/ test.tar.gz

betty: running tar -czvf test.tar.gz test/

test/

test/home/

test/home/sk/

test/home/sk/test/

test/home/sk/test/sample

类似的,我们可以用下面的命令来解压缩一个归档文件。

betty uncompress test.tar.gz

betty: running mkdir test &amp;&amp; tar -zxvf test.tar.gz -c test

betty工具有一些命令格式。如果你输入“what is my user name”而不是“whats my username”,它是不能识别的。所以,你只能输入betty支持的英语短语。

下面给出一个betty支持的完整的命令行列表。

count:

betty how many words are in this directory

betty how many characters are in myfile.py

betty count lines in this folder

(note that there's many ways to say more or less the same thing.)

config:

betty change your name to joe

betty speak to me

betty stop speaking to me

datetime:

betty what time is it

betty what is todays date

betty what month is it

betty whats today

find:

betty find me all files that contain california

internet:

betty download http://www.mysite.com/something.tar.gz to something.tar.gz

betty uncompress something.tar.gz

betty unarchive something.tar.gz to somedir

(you can use unzip, unarchive, untar, uncompress, and expand interchangeably.)

betty compress /path/to/dir

itunes:

betty mute itunes

betty unmute itunes

betty pause the music

betty resume itunes

betty stop my music

betty next song

betty prev track

betty what song is playing

(note that the words song, track, music, etc. are interchangeable)

fun:

betty go crazy

betty whats the meaning of life

...and more that are left for you to discover!

map:

betty show me a map of mountain view

meta:

betty what version are you (or just betty version)

betty whats your github again

permissions:

betty give me permission to this directory

betty give anotheruser ownership of myfile.txt

process:

betty show me all processes by root containing grep

betty show me all my processes containing netbio

sizes:

betty show size for myfile.txt

spotify:

betty play spotify

betty pause spotify

betty next spotify

betty previous spotify

user:

betty whats my real name

betty whats my ip address

betty who else is logged in

betty whats my version of ruby

web queries:

betty turn web on

betty please tell me what is the weather like in london

对linux初级使用者来说,betty似乎是一个非常nice的工具。希望这个工具对你也会非常有用。

cheers!

原文发布时间:2014-07-23

本文来自云栖合作伙伴“linux中国”

继续阅读