You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In `zsh`: <kbd>Ctrl</kbd> + <kbd>U</kbd> will cut the whole line (irrespective of your position). In `bash` and `fish`, it will cut backwards from your current position. <kbd>Ctrl</kbd> + <kbd>Y</kbd> will paste it back to the terminal.
141
142
143
+
### entr
144
+
145
+
Useful for watching file changes and running commands on files, e.g,
146
+
147
+
```bash
148
+
ls *.md | entr -c glow todo.md
149
+
```
150
+
151
+
will display the `todo.md` document in the terminal with `glow` and refresh every time the file is changed on disk.
0 commit comments