or
or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up
Syntax | Example | Reference | |
---|---|---|---|
# Header | Header | 基本排版 | |
- Unordered List |
|
||
1. Ordered List |
|
||
- [ ] Todo List |
|
||
> Blockquote | Blockquote |
||
**Bold font** | Bold font | ||
*Italics font* | Italics font | ||
~~Strikethrough~~ | |||
19^th^ | 19th | ||
H~2~O | H2O | ||
++Inserted text++ | Inserted text | ||
==Marked text== | Marked text | ||
[link text](https:// "title") | Link | ||
 | Image | ||
`Code` | Code |
在筆記中貼入程式碼 | |
```javascript var i = 0; ``` |
|
||
:smile: | ![]() |
Emoji list | |
{%youtube youtube_id %} | Externals | ||
$L^aT_eX$ | LaTeX | ||
:::info This is a alert area. ::: |
This is a alert area. |
On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?
Please give us some advice and help us improve HackMD.
Syncing
xxxxxxxxxx
Nushell core team meeting 2024-04-10
Attendees
Agenda
do -i
functionality recently changed due to #11934. Disucssion of changes #12451. Should we stick with these changes or revertdo -i
to eat all errors like it used to.Option 1 - Change to the way it was
do -i { blah }
This eats all errors including stderr output.Option 2 - Adopt this new way of eating errors
ignore all stderr
do -i { diff nonexistentfile1 nonexistentfile2 } e> (null-device)
or just for one command
do -i { diff nonexistentfile1 nonexistentfile2 e> (null-device) }
With option 2, we'd want to make
null-device
a prelude command so it's automatically available.nu
supporting--
as indicator for arbitrary argments #12344. Below is taken from the issue.--
in custom commandsin the following example, it is hard to tell who the
foo
andbar
are meant for, thecommands
or thenu
binary?nu -c 'echo $args' foo bar
many shells would use
--
as an indicator to distinguish who is the rest of the args meant for.nu -c 'echo $args' foo bar
=>foo
andbar
are meant for thenu
nu -c 'echo $args' -- foo bar
=>foo
andbar
are meant for thecommands
scriptnu -c 'echo $args' foo -- bar
=>foo
is meant for thenu
whilebar
is meant for thecommands
scriptDiscussed Topics
Windows cmd process CVE
rust-toolchain.toml
, MSRV)heading for the 30k stars
redirection discussion
do -i
to really just bedo
only allowing closures and perhaps removing the flags.help redirection
to list all ways we allow to redirect.cat foo.txt | out+err | print $in.err
and also include exit code? (sophia)cat foo.txt | capture --out --err | print $in.err
(kubouch)do -i
behavior– double dash