dune
dune copied to clipboard
A shell🐚 by the beach🏖️!
I've installed `pv` to check the speed while pipe'ing, but it doesn't work. ``` $ seq 1 1000000 | pv -l | wc -l 12.8k 0:00:33 [0.00 /s] [ ```...
It seems you can write to file like this: ~~~ something >> file.txt ~~~ but can you append to file?
hey, i've been meaning to do so for a while, but i haven't gotten around to it how can i add dune as a default shell? online guides say whatever...
There are already a lot of features that are very well explained through the README. I feel like the project would profit from a step-by-step guide through some of the...
Is it possible to use shell backtick to expand variables eg. ``vim `which COMMAND``
Fixes #71. Closes #70. This PR adds a variable to the environment that tracks whether the currently evaluated expression's output should be printed directly or stored in a string. This...
```bash $ let x = which which /usr/bin/which $ echo x None $ ``` As you can see, the output of `which` is printed, but it is not stored in...
Typing `dune --version` should print version information. `dune --help` should print help information or open the man page. Also, many shells accept a `-c, --command` argument to execute commands and...
What a config file could contain: * Color theme * Keyboard shortcuts * Paths to dune preludes The config file should be read from `~/.config/dune/` or `XDG_CONFIG_DIR` or whatever the...
When I'm not connected to the internet, `curl` fails to get weather data which causes `parse@json` to fail, and also terminates the execution of my prelude early. I think that...