浏览代码

shutdown: add Spanish translation

Enrique Matías Sánchez (Quique) 4 年之前
父节点
当前提交
da721e4e50
共有 1 个文件被更改,包括 27 次插入0 次删除
  1. 27 0
      pages.es/linux/shutdown.md

+ 27 - 0
pages.es/linux/shutdown.md

@@ -0,0 +1,27 @@
+# shutdown
+
+> Detiene, apaga o reinicia la máquina.
+
+- Detiene inmediatamente:
+
+`shutdown -H now`
+
+- Apaga inmediatamente:
+
+`shutdown -h now`
+
+- Reinicia inmediatamente:
+
+`shutdown -r now`
+
+- Reinicia dentro de 5 minutos:
+
+`shutdown -r +{{5}} &`
+
+- Apaga a la 1:00 PM (formato 24h):
+
+`shutdown -h 13:00`
+
+- Cancela una operación de apagado/reinicio pendiente:
+
+`shutdown -c`