For faster navigation, this Iframe is preloading the Wikiwand page for Shebang.

Shebang

Shebang

Shebang es, en la jerga de Unix, el nombre que recibe el par de caracteres #! que se encuentran al inicio de los programas ejecutables interpretados. En algunas ocasiones se le denomina también hash-bang o sharpbang. A continuación de estos caracteres se indica la ruta completa al intérprete de las órdenes contenidas en el mismo (el SheBang más habitual suele ser "#!/bin/bash", que es una llamada al intérprete de comandos Bash). Este método estándar[1]​ permite que el usuario pueda ejecutar un programa interpretado como si que ejecutara un programa binario.

Cuando no se conoce la ruta absoluta del mismo, es posible utilizar el programa auxiliar env,[2]​ que generalmente suele estar en /usr/bin.[3]​ Este es un método muy usado para scripts donde el intérprete no tiene la misma ruta en todos los sistemas (por ejemplo, el SheBang usado generalmente para Python es "#!/usr/bin/env python", que es una llamada a env). Para Python 3, se usa "#!/usr/bin/env python3".

Sirve también para identificar el formato de fichero a modo de «número mágico».

En algunos sistemas es posible especificar en el shebang hasta un único parámetro después del nombre del programa a ejecutar, linux por ejemplo, mientras que en otros como por ejemplo MacOS es posible especificar varios, al separarlos por espacios.[3]

Este parámetro es necesario en algunos casos, como en scripts hechos AWK, ya que se utiliza el parámetro -f para indicar cuál es el script que tiene que cargar.

En Python, se usa el Shebang cuando se programa para ordenadores con sistemas basados en Unix, y en GNU/Linux.

Ejemplo

[editar]

Al crear un archivo de texto con permisos de ejecución llamado programa, con el siguiente contenido:

#!/usr/bin/awk -f
BEGIN {
  print "parámetros:"
  for (i = 1; i < ARGC; i++)
    print "  " i ": " ARGV[i]
}

Cuando se ejecute: ./programa argumento1 argumento2, el sistema operativo, tras leer la línea del shebang, procederá de hecho a ejecutar: /usr/bin/awk -f ./programa argumento1 argumento2. Obteniéndose como resultado:

parámetros:
  1: argumento1
  2: argumento2

En Python:

#!/usr/bin/python3

def saludar():
    print("Hola!")
    
saludar()

Referencias

[editar]
  1. The Open Group. «Base WG Resolution - #! executable scripts» (en inglés). Consultado el 28 de noviembre de 2010. 
  2. The IEEE and The Open Group. «Especificación de env» (en inglés). Consultado el 28 de noviembre de 2010. 
  3. a b Sven Mascheck. «The #! magic, details about the shebang» (en inglés). Consultado el 28 de noviembre de 2010. 

Enlaces externos

[editar]
{{bottomLinkPreText}} {{bottomLinkText}}
Shebang
Listen to this article

This browser is not supported by Wikiwand :(
Wikiwand requires a browser with modern capabilities in order to provide you with the best reading experience.
Please download and use one of the following browsers:

This article was just edited, click to reload
This article has been deleted on Wikipedia (Why?)

Back to homepage

Please click Add in the dialog above
Please click Allow in the top-left corner,
then click Install Now in the dialog
Please click Open in the download dialog,
then click Install
Please click the "Downloads" icon in the Safari toolbar, open the first download in the list,
then click Install
{{::$root.activation.text}}

Install Wikiwand

Install on Chrome Install on Firefox
Don't forget to rate us

Tell your friends about Wikiwand!

Gmail Facebook Twitter Link

Enjoying Wikiwand?

Tell your friends and spread the love:
Share on Gmail Share on Facebook Share on Twitter Share on Buffer

Our magic isn't perfect

You can help our automatic cover photo selection by reporting an unsuitable photo.

This photo is visually disturbing This photo is not a good choice

Thank you for helping!


Your input will affect cover photo selection, along with input from other users.

X

Get ready for Wikiwand 2.0 🎉! the new version arrives on September 1st! Don't want to wait?