-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
at: update Spanish translation (#14719)
Co-authored-by: Igor Támara <[email protected]>
- Loading branch information
Showing
1 changed file
with
14 additions
and
6 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 |
---|---|---|
@@ -1,17 +1,25 @@ | ||
# at | ||
|
||
> Ejecuta comandos una vez en un momento posterior. | ||
> El servicio atd (o atrun) debe estar ejecutándose para las ejecuciones reales. | ||
> Ejecuta los comandos una vez en otro momento. | ||
> Los resultados se enviarán al correo del usuario. | ||
> Más información: <https://manned.org/at>. | ||
- Ejecuta comandos desde la entrada estándar en 5 minutos (pulsa `Ctrl + D` cuando termines): | ||
- Inicia el servicio (daemon)`atd`: | ||
|
||
`systemctl start atd` | ||
|
||
- Crea comandos interactivamente y los ejecuta en 5 minutos (pulsa `<Ctrl> + D` cuando termines): | ||
|
||
`at now + 5 minutes` | ||
|
||
- Ejecuta un comando desde la entrada estándar a las 10:00 AM de hoy: | ||
- Crea comandos de forma interactiva y los ejecuta a una hora determinada: | ||
|
||
`at {{hh:mm}}` | ||
|
||
- Ejecuta un comando de `stdin` a las 10:00 AM de hoy: | ||
|
||
`echo "{{./make_db_backup.sh}}" | at 1000` | ||
`echo "{{comando}}" | at 1000` | ||
|
||
- Ejecuta comandos desde un archivo dado el próximo martes: | ||
- Ejecuta comandos desde un archivo determinado el próximo martes: | ||
|
||
`at -f {{ruta/al/archivo}} 9:30 PM Tue` |