如何编写eshell脚本?
那里。 我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从 eshell 调用任何 elisp 命令/函数/运算符;我想这意味着您可以使用 elisp 编写脚本(请参阅 GNU Emacs Lisp 参考手册)。例子:
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: