Sylvestre Ledru
2d4dfc3d7d
cp: add support POSIXLY_CORRECT=1 when dealing with dangling links
...
GNU: tests/cp/thru-dangling.sh
2023-05-01 11:05:00 +02:00
iambasanta
70b69efadb
sort: Move help strings to markdown file ( #4808 )
...
* sort: Move help strings to markdown file
* Correction for spell check
2023-04-30 19:50:28 +02:00
Daniel Hofstetter
599e7a0645
Merge pull request #4805 from iambasanta/tr-move-help-strings-to-md-file
...
tr: move help string to markdown file
2023-04-30 14:26:22 +02:00
Masahito Osako
e46b05722f
timeout: move help strings to markdown file ( #4806 )
...
* timeout: move help strings to markdown file
2023-04-30 08:51:14 +02:00
iambasanta
22490ae978
tr: move help string to markdown file
2023-04-30 10:32:58 +05:45
Daniel Hofstetter
7cfdbe676c
mv: validate --target arg
2023-04-29 16:16:00 +02:00
Sylvestre Ledru
c5fb6eac9f
Merge pull request #4794 from shinhs0506/mv-target-dir
...
mv: check if --target is a directory
2023-04-29 10:40:44 +02:00
m11o
bc7a01dd3b
sync: move help strings to markdown file
2023-04-29 15:51:55 +09:00
Sylvestre Ledru
9f9847188d
Merge pull request #3661 from cakebaker/unescaped_backslash
...
paste: handle list ending with unescaped backslash
2023-04-28 16:53:26 +02:00
Daniel Hofstetter
c254900db9
paste: handle list ending with unescaped backslash
2023-04-28 14:33:53 +02:00
m11o
3ca1fa8dfd
sum: move help strings to markdown file
2023-04-28 20:21:44 +09:00
Sylvestre Ledru
b33986de86
Merge pull request #4366 from BartMassey-upstream/name-weirdness
...
coreutils: fixed panic when multi-call binary has funny name
2023-04-28 09:27:05 +02:00
m11o
0391239273
fix cargo fmt
2023-04-27 22:17:37 +09:00
m11o
c49769865a
stty: move help strings to markdown file
2023-04-27 22:14:52 +09:00
Sylvestre Ledru
eb8f353a2f
date usage help: Remove the examples in the description table
...
we have a new column with examples
2023-04-27 09:17:39 +02:00
Masahito Osako
746331cc65
stdbuf: move help strings to markdown file ( #4792 )
2023-04-27 08:13:46 +02:00
Daniel Hofstetter
dffd2f082e
Merge pull request #4789 from sylvestre/doc
...
Improve the date md page
2023-04-27 07:19:45 +02:00
Sylvestre Ledru
474d391eb1
Merge pull request #4790 from sylvestre/date_use_humantime_to_duration
...
date -d supports - 1 year ago, 2 second, etc
2023-04-26 23:54:49 +02:00
Sylvestre Ledru
360cbda0c5
Merge pull request #4782 from cakebaker/mv_no_clobber_behavior_change
...
mv: adapt -n behavior to GNU mv 9.3
2023-04-26 22:47:12 +02:00
Sylvestre Ledru
111723aa84
rename date-usage.mkd => date-usage.md
2023-04-26 22:43:48 +02:00
Sylvestre Ledru
825d240ef0
date -d supports - 1 year ago, 2 second, etc
2023-04-26 22:14:15 +02:00
John Shin
aeeb3c90cf
mv: check if --target is a directory
2023-04-26 11:15:41 -07:00
Sylvestre Ledru
0f268428fe
Merge pull request #4379 from ZauJulio/hotfix-mktemp
...
mktemp: fix PrefixContainsDirSeparator verification
2023-04-26 18:28:56 +02:00
Sylvestre Ledru
583a247d9d
Improve the date md page
2023-04-26 08:48:13 +02:00
Sylvestre Ledru
4997851d5b
Merge pull request #4787 from shinhs0506/mv-verbose
...
mv: add 'renamed " in the beginning of the message when verbose flag is set
2023-04-26 08:34:42 +02:00
John Shin
d4630c83b4
mv: add 'renamed ' in the beginning when verbose flag is set
2023-04-25 21:27:52 -07:00
m11o
0b84aa52f3
fix check-spell
2023-04-25 22:26:47 +09:00
m11o
869614d343
fix cargo fmt
2023-04-25 22:01:10 +09:00
m11o
98dd31c00d
split: move help strings to markdown file
2023-04-25 22:00:22 +09:00
Daniel Hofstetter
804274dbf4
mv: adapt -n behavior to GNU mv 9.3
2023-04-25 11:33:48 +02:00
Sylvestre Ledru
6115af6386
Merge pull request #4769 from sylvestre/touch
...
touch: improve support for dangling link
2023-04-25 08:26:23 +02:00
Sylvestre Ledru
d3fc670f65
Merge pull request #4781 from sunfishcode/sunfishcode/fix-warning
...
Fix a warning in upstream code on Rust nightly.
2023-04-25 07:57:02 +02:00
Daniel Hofstetter
714206dd25
Merge pull request #4778 from sylvestre/use_humantime_to_duration
...
Use the humantime_to_duration crate
2023-04-25 07:05:03 +02:00
Dan Gohman
f187a5ccff
Fix a warning in upstream code on Rust nightly.
...
Rust nightly recently [started] issuing the following warning when
compiling coreutils:
[started]: https://github.com/rust-lang/rust/pull/109944
```
warning: getting the inner pointer of a temporary `CString`
--> src/uucore/src/lib/features/entries.rs:324:67
|
324 | let data = $fnam(CString::new(k).unwrap().as_ptr());
| ------------------------ ^^^^^^ this pointer will be invalid
| |
| this `CString` is deallocated at the end of the statement, bind it to a variable to extend its lifetime
...
340 | f!(getpwnam, getpwuid, uid_t, Passwd);
| ------------------------------------- in this macro invocation
|
= note: pointers do not have a lifetime; when calling `as_ptr` the `CString` will be deallocated at the end of the statement because nothing is referencing it as far as the type system is concerned
= help: for more information, see https://doc.rust-lang.org/reference/destructors.html
= note: `#[warn(temporary_cstring_as_ptr)]` on by default
= note: this warning originates in the macro `f` (in Nightly builds, run with -Z macro-backtrace for more info)
```
There doesn't seem to be an actual problem in this case, as the pointer is
only used within the statement.
2023-04-24 14:31:05 -07:00
Sylvestre Ledru
d1aa1ac963
Use the humantime_to_duration crate
2023-04-24 22:23:07 +02:00
m11o
dd89ec709b
remove todo comment
...
`-f` option is implemented in #2918
2023-04-24 23:44:28 +09:00
m11o
1cb0a673a0
change static keyword to const keyword
2023-04-24 23:38:45 +09:00
m11o
fd02bd13a1
seq: move help strings to md file
2023-04-24 23:35:52 +09:00
Sylvestre Ledru
c262fa936c
Improve the doc and simplify the code
...
Co-authored-by: Daniel Hofstetter <daniel.hofstetter@42dh.com>
2023-04-24 12:03:21 +02:00
Sylvestre Ledru
84e0610487
touch: don't generate an error on 'touch -h -'
2023-04-24 12:03:21 +02:00
Sylvestre Ledru
aaea758b6a
touch: -h should not fail when running on broken symlink
...
Fixes more of tests/touch/no-dereference.sh
2023-04-24 12:03:21 +02:00
Sylvestre Ledru
c3656e561c
touch: -h -r should not fail when running on broken symlink
...
Fixes the beginning of:
tests/touch/no-dereference.sh
2023-04-24 12:03:21 +02:00
Sylvestre Ledru
417d238bba
Merge pull request #4773 from cakebaker/mv_fix_issue_4724
...
mv: show no error if overwriting is declined in interactive mode
2023-04-24 08:58:21 +02:00
Daniel Hofstetter
f9b60c4232
Merge pull request #4776 from vikiminki/factor_flush
...
Add flush after calculating factor
2023-04-24 08:09:17 +02:00
Masahito Osako
d18ccc6a2a
runcon: move help strings to markdown file ( #4774 )
2023-04-24 08:01:28 +02:00
vix
f9b7423eef
Add flush after calculating factor
2023-04-23 20:35:13 +02:00
Daniel Hofstetter
e94f1d8eb7
mv: -i show no error if overwriting is declined
2023-04-23 15:27:24 +02:00
m11o
31c1d9c956
fix format
2023-04-22 16:33:58 +09:00
m11o
b84a94b889
refactor: use override_help instead of override_usage
2023-04-22 16:11:36 +09:00
m11o
e82ba6e707
readlink: move help strings to markdown file
2023-04-22 16:10:26 +09:00