Skip to content

Commit

Permalink
specify Unix command
Browse files Browse the repository at this point in the history
  • Loading branch information
nhz2 committed Sep 3, 2024
1 parent 6010c54 commit f46f9d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base/file.jl
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ of the file or directory `src` refers to.
Return `dst`.
!!! note
The `cp` function is different from the `cp` command. The `cp` function always operates on
The `cp` function is different from the `cp` Unix command. The `cp` function always operates on
the assumption that `dst` is a file, while the command does different things depending
on whether `dst` is a directory or a file.
Using `force=true` when `dst` is a directory will result in loss of all the contents present
Expand Down Expand Up @@ -440,7 +440,7 @@ julia> rm("goodbye.txt");
```
!!! note
The `mv` function is different from the `mv` command. The `mv` function by
The `mv` function is different from the `mv` Unix command. The `mv` function by
default will error if `dst` exists, while the command will delete
an existing `dst` file by default.
Also the `mv` function always operates on
Expand Down

0 comments on commit f46f9d8

Please sign in to comment.