forked from tldr-pages/tldr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
time, date, mkdir, print: add Russian translation (tldr-pages#12584)
* time, date, mkdir, print: add Russian translation --------- Co-authored-by: K.B.Dharun Krishna <[email protected]>
- Loading branch information
Showing
4 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# date | ||
|
||
> Просмотр и изменение текущей системной даты. | ||
> Больше информации: <https://learn.microsoft.com/windows-server/administration/windows-commands/date>. | ||
- Отображение текущей системной даты, за которой следует запрос на ввод новой даты (Оставить пустым если не нужно вносить изменения): | ||
|
||
`date` | ||
|
||
- Отображает текущую дату без запроса на новую дату: | ||
|
||
`date /t` | ||
|
||
- Для изменения текущей даты, введите новую дату, на основе текущей конфигурации даты, а затем нажмите клавишу ВВОД: | ||
|
||
`date {{месяц}}-{{день}}-{{год}}` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# mkdir | ||
|
||
> Создает каталог или подкаталог в файловой системе. | ||
> Больше информации: <https://learn.microsoft.com/windows-server/administration/windows-commands/mkdir>. | ||
- Создать новый каталог: | ||
|
||
`mkdir {{путь\до\папки}}` | ||
|
||
- Чтобы создать дерево каталогов в корневом каталоге введите: | ||
|
||
`mkdir {{путь\до\под_папки}}` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
> Вывод на печать текстового файла. | ||
> Больше информации: <https://learn.microsoft.com/windows-server/administration/windows-commands/print>. | ||
- Печать текстового файла используя локальный принтер: | ||
|
||
`print {{путь\до\папки}}` | ||
|
||
- Печать текстового файла используя сетевой принтер: | ||
|
||
`print /d:{{принтер}} {{путь\до\папки}}` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# time | ||
|
||
> Просмотр и измененение системного времени. | ||
> Больше информации: <https://learn.microsoft.com/windows-server/administration/windows-commands/time>. | ||
- Отображение текущего системного времени, за которым следует запрос на ввод нового времени (Оставить пустым если не нужно вносить изменения): | ||
|
||
`time` | ||
|
||
- Отображает текущее системное время без запроса на новое время: | ||
|
||
`time /t` |