如何编写eshell脚本?

发布于 2024-10-17 06:28:36 字数 198 浏览 2 评论 0原文

那里。 我是 eshell 新手,现在我遇到一个问题,如何编写它的脚本。 我试过了 (rm ~/somefile) 它起作用了。所以每个命令都是这样的吗?我应该如何编写条件代码和循环?我应该定制什么以使系统默认使用 eshell 而不是其他命令(如 bash)执行我的脚本? 我的英语不太好,我希望你能理解我的意思。如果我的英语表达有任何修正,我会很感激?

there.
I'm new to eshell,and now i come to a problem that how can i script it.
i've tried
(rm ~/somefile)
and it worked.so is every command like this?how should i write conditional code and loop?and what should i customize to make the system execute my script using eshell other than others ,like bash,by default?
i'm not very good at english,and i hope you can understand what i mean.i'll also appreciate any correction to my english expression?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

那一片橙海, 2024-10-24 06:28:36

您可以从 eshell 调用任何 elisp 命令/函数/运算符;我想这意味着您可以使用 elisp 编写脚本(请参阅 GNU Emacs Lisp 参考手册)。例子:

Welcome to the Emacs shell

~ $ (defun foo (n) (if (= 0 (mod n 2)) "Even." "Odd!"))
foo
~ $ foo 2
Even.
~ $ foo 3
Odd!
~ $ 

You can call any elisp command/function/operator from eshell; I suppose that means you can script it using elisp (See GNU Emacs Lisp Reference manual). Example:

Welcome to the Emacs shell

~ $ (defun foo (n) (if (= 0 (mod n 2)) "Even." "Odd!"))
foo
~ $ foo 2
Even.
~ $ foo 3
Odd!
~ $ 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文