TranslateProject/published/202007/20200628 entr- rerun your build when files change.md

110 lines
4.1 KiB
Markdown
Raw Normal View History

2020-07-07 08:48:26 +08:00
[#]: collector: (lujun9972)
[#]: translator: (geekpi)
2020-07-11 09:42:57 +08:00
[#]: reviewer: (wxy)
[#]: publisher: (wxy)
[#]: url: (https://linux.cn/article-12403-1.html)
2020-07-07 08:48:26 +08:00
[#]: subject: (entr: rerun your build when files change)
[#]: via: (https://jvns.ca/blog/2020/06/28/entr/)
[#]: author: (Julia Evans https://jvns.ca/)
entr文件更改时重新运行构建
======
2020-07-11 09:42:57 +08:00
![](https://img.linux.net.cn/data/attachment/album/202007/11/094223uct6386d9iwctmbh.jpg)
2020-07-07 08:48:26 +08:00
2020-07-11 09:42:57 +08:00
这是一篇简短的文章。我是最近才发现 [entr][1] 的,我很惊奇从来没有人告诉过我?!因此,如果你和我一样,那么我告诉你它是什么。
2020-07-07 08:48:26 +08:00
2020-07-11 09:42:57 +08:00
[entr 的网站][1]上对它已经有很好的解释,也有很多示例。
总结在其头部:`entr` 是一个命令行工具,当每次更改一组指定文件中的任何一个时,都能运行一个任意命令。你在标准输入给它传递要监控的文件列表,如下所示:
2020-07-07 08:48:26 +08:00
```
git ls-files | entr bash my-build-script.sh
```
或者
```
find . -name *.rs | entr cargo test
```
或者任何你希望的。
### 快速反馈很棒
就像世界上的每个程序员一样,我发现每次更改代码时都必须手动重新运行构建/测试非常烦人。
2020-07-11 09:42:57 +08:00
许多工具(例如 hugo 和 flask都有一个内置的系统可以在更改文件时自动重建这很棒
2020-07-07 08:48:26 +08:00
2020-07-11 09:42:57 +08:00
但是通常我会自己编写一些自定义的构建过程(例如 `bash build.sh`),而 `entr` 让我有了一种神奇的构建经验,我只用一行 bash 就能得到即时反馈,知道我的改变是否修复了那个奇怪的 bug。万岁
2020-07-07 08:48:26 +08:00
2020-07-11 09:42:57 +08:00
### 重启服务器entr -r
2020-07-07 08:48:26 +08:00
2020-07-11 09:42:57 +08:00
但是如果你正在运行服务器,并且每次都需要重新启动服务器怎么办?如果你传递 `-r`,那么 `entr` 会帮你的
2020-07-07 08:48:26 +08:00
```
git ls-files | entr -r python my-server.py
```
2020-07-11 09:42:57 +08:00
### 清除屏幕entr -c
2020-07-07 08:48:26 +08:00
另一个简洁的标志是 `-c`,它让你可以在重新运行命令之前清除屏幕,以免被前面构建的输出分散注意力。
2020-07-11 09:42:57 +08:00
### 与 git ls-files 一起使用
通常,我要跟踪的文件集和我在 git 中的文件列表大致相同,因此将 `git ls-files` 传递给 `entr` 是很自然的事情。
我现在有一个项目,有时候我刚创建的文件还没有在 git 里。那么如果你想包含未被跟踪的文件怎么办呢?这些 `git` 命令行参数就可以做到(我是从一个读者的邮件中得到的,谢谢你!):
2020-07-07 08:48:26 +08:00
2020-07-11 09:42:57 +08:00
```
git ls-files -cdmo --exclude-standard | entr your-build-script
```
2020-07-07 08:48:26 +08:00
2020-07-11 09:42:57 +08:00
有人给我发了邮件,说他们做了一个 `git-entr` 命令,可以执行:
2020-07-07 08:48:26 +08:00
```
2020-07-11 09:42:57 +08:00
git ls-files -cdmo --exclude-standard | entr -d "$@"
2020-07-07 08:48:26 +08:00
```
2020-07-11 09:42:57 +08:00
我觉得这真是一个很棒的主意。
2020-07-07 08:48:26 +08:00
2020-07-11 09:42:57 +08:00
### 每次添加新文件时重启entr -d
2020-07-07 08:48:26 +08:00
2020-07-11 09:42:57 +08:00
`git ls-files` 的另一个问题是有时候我添加一个新文件,当然它还没有在 git 中。`entr` 为此提供了一个很好的功能。如果你传递 `-d`,那么如果你在 `entr` 跟踪的任何目录中添加新文件,它就会退出。
2020-07-07 08:48:26 +08:00
2020-07-11 09:42:57 +08:00
我将它与一个 `while` 循环配合使用,它将重启 `entr` 来包括新文件,如下所示:
2020-07-07 08:48:26 +08:00
```
while true
do
{ git ls-files; git ls-files . --exclude-standard --others; } | entr -d your-build-scriot
done
```
### entr 在 Linux 上的工作方式inotify
2020-07-11 09:42:57 +08:00
在 Linux 中,`entr` 使用 `inotify`(用于跟踪文件更改这样的文件系统事件的系统)工作。如果用 `strace` 跟踪它,那么你会看到每个监控文件的 `inotify_add_watch` 系统调用,如下所示:
2020-07-07 08:48:26 +08:00
```
inotify_add_watch(3, "static/stylesheets/screen.css", IN_ATTRIB|IN_CLOSE_WRITE|IN_CREATE|IN_DELETE_SELF|IN_MOVE_SELF) = 1152
```
2020-07-11 09:42:57 +08:00
### 就这样了
2020-07-07 08:48:26 +08:00
我希望这可以帮助一些人了解 `entr`
--------------------------------------------------------------------------------
via: https://jvns.ca/blog/2020/06/28/entr/
作者:[Julia Evans][a]
选题:[lujun9972][b]
译者:[geekpi](https://github.com/geekpi)
2020-07-11 09:42:57 +08:00
校对:[wxy](https://github.com/wxy)
2020-07-07 08:48:26 +08:00
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
[a]: https://jvns.ca/
[b]: https://github.com/lujun9972
[1]: http://eradman.com/entrproject/