Nerver forget again. For timestamp 1353101513:
$ date -d "1970-01-01 + 1353101513 seconds" +"%F %T"
2012-11-16 21:31:53
Et voilí!
Otro de mis pequeños proyectos
Nerver forget again. For timestamp 1353101513:
$ date -d "1970-01-01 + 1353101513 seconds" +"%F %T"
2012-11-16 21:31:53
Et voilí!
Por defecto en bash sólo se pueden retornar enteros. ¿Qué hay que hacer entonces para que retorne un valor no entero?
El truco está en hacer un echo del valor y asegurarnos en la llamada de la función que se asigna a una variable. Es decir, nuestra función sería:
function retorna_texto {
echo -n "este es el valor a retornar"
}
Y la llamada:
VALOR=$( retorna_texto )
Ahora en ${VALOR} tendremos el texto tal y como queríamos
I have just pushed into GitHub a bash autocomplete script for symfony.
This script allows to autocomplete your first level option when calling to symfony script. It is easy to install (just copy one and call it manually if you do not have access rights). All steps and working issues are in the wiki. It also accepts custom actions.
This is a working example once script is corretly installed and invoked:
Assuming symfony is in current folder and [tab] y tab key press action, this is an example of how symfony_complete works:
$ ./symfony con[tab]figure:[tab][tab]
author database
$ ./symfony doctrine:a[tab]uthor
We are pleased to know what you think and any issue you have. You can find us on GitHub.
Related links:
© 2024 Tatai from the trenches
Tema por Anders Noren — Arriba ↑