Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/books/admin_guide/03-commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -1349,7 +1349,7 @@ The simple `>` redirection overwrites the contents of the output file:
$ date +%F > date_file
```

while the double redirection `>>` adds (concatenates) to the content of the output file.
When the `>>` character is used, it indicates that the output result of the command is appended to the file content.

```bash
$ date +%F >> date_file
Expand Down Expand Up @@ -1477,7 +1477,7 @@ The aliases are only defined temporarily, for the time of the user session.
For permanent use, they must be created in the:

* `.bashrc` file in the user's login directory;
* `/etc/profile.d/alias.sh` file for all users.
* `/etc/bashrc` file for all users.

!!! Warning

Expand Down