This commit is contained in:
sylvestre
2023-03-14 02:38:10 +00:00
parent 2baf32aa6e
commit b1c0872a98
+3 -3
View File
@@ -112,10 +112,10 @@
<span class="kw">use </span>std::ffi::CString;
<span class="kw">use </span>uucore::display::Quotable;
<span class="kw">use </span>uucore::error::{UResult, USimpleError};
<span class="kw">use </span>uucore::{format_usage, show};
<span class="kw">use </span>uucore::{format_usage, help_about, help_usage, show};
<span class="kw">static </span>USAGE: <span class="kw-2">&amp;</span>str = <span class="string">&quot;{} [OPTION]... NAME...&quot;</span>;
<span class="kw">static </span>ABOUT: <span class="kw-2">&amp;</span>str = <span class="string">&quot;Create a FIFO with the given name.&quot;</span>;
<span class="kw">static </span>USAGE: <span class="kw-2">&amp;</span>str = <span class="macro">help_usage!</span>(<span class="string">&quot;mkfifo.md&quot;</span>);
<span class="kw">static </span>ABOUT: <span class="kw-2">&amp;</span>str = <span class="macro">help_about!</span>(<span class="string">&quot;mkfifo.md&quot;</span>);
<span class="kw">mod </span>options {
<span class="kw">pub static </span>MODE: <span class="kw-2">&amp;</span>str = <span class="string">&quot;mode&quot;</span>;