Si es nuevo en el sistema operativo LINUX y tiene problemas para manejar las utilidades de línea de comandos proporcionadas por LINUX, entonces realmente necesita saber primero sobre el comando de ayuda que, como su nombre lo dice, lo ayuda a aprender sobre cualquier comando incorporado.
El comando de ayuda como se dijo antes solo muestra información sobre los comandos integrados de shell. Aquí está la sintaxis para ello:
// syntax for help command $help [-dms] [pattern ...]
El patrón especificado en la sintaxis anterior se refiere al comando sobre el que le gustaría saber y si coincide con algún comando integrado de shell, ayude a brindar detalles al respecto y, si no coincide, ayude a imprimir la lista de temas de ayuda. por su conveniencia. Y las d, m y s aquí son opciones que puede usar con el comando de ayuda .
Usando el comando de ayuda
Para que comprenda más fácilmente lo que hace el comando de ayuda, probemos el comando de ayuda para obtener información sobre la ayuda en sí.
// using help $help help help: help [-dms] [pattern...] Display information about builtin commands. Displays brief summaries of builtin commands. If PATTERN IS specified, gives detailed help on all commands matching PATTERN, otherwise the list of help topics is printed. Options: -d output short description for each topic -m display usage in pseudo-manpage format -s output only a short usage synopsis for each topic matching PATTERN Arguments: PATTERN Pattern specifying a help topic Exit Status: Returns success unless PATTERN is not found or an invalid option is given. /* so that's what help command does telling everything about the command and helping you out */
Opciones para el comando de ayuda
- Opción -d: se usa cuando solo desea obtener una descripción general de cualquier comando incorporado de Shell, es decir , solo brinda una breve descripción.
- Opción -m: muestra el uso en formato pseudo-manpage.
- Opción -s: solo muestra una breve sinopsis de uso para cada coincidencia de tema.
Uso de la ayuda con las opciones
- Uso de -d: esta opción solo le permite saber qué hace un comando sin brindarle detalles sobre sus opciones y otras cosas.
// using help with -d $help -d help help - Display information about builtin commands.
- Uso de -s: esta opción es cuando solo desea conocer la sintaxis de un comando.
// using help with -s $help -s help help: help [-dms] [pattern ...]
- Usando -m : Esto se usa para mostrar información sobre un comando en formato pseudo-manpage.
// using help with -m $help -m help NAME help - Display information about builtin commands. SYNOPSIS help [-dms] [pattern ...] DESCRIPTION Display information about builtin commands. Displays brief summaries of builtin commands. If PATTERN IS specified, gives detailed help on all commands matching PATTERN, otherwise the list of help topics is printed. Options: -d output short description for each topic -m display usage in pseudo-manpage format -s output only a short usage synopsis for each topic matching PATTERN Arguments: PATTERN Pattern specifying a help topic Exit Status: Returns success unless PATTERN is not found or an invalid option is given. SEE ALSO bash(1) IMPLEMENTATION GNU bash,version 4.3.11(1)-release (i686-pc-linux-gnu) Copyright (C) 2013 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later
Eso es todo sobre el comando de ayuda .
Publicación traducida automáticamente
Artículo escrito por Kartik Thakral y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA