Archive

Archive for January 31st, 2009

Manual de comando cat: $man cat

January 31st, 2009

Utilizando el comando “man cat”  obtenemos un manual del comando “cat”:

cat - concatenate files and print on the standard output

SYNOPSIS
cat [OPTION] [FILE]…

DESCRIPTION
Concatenate FILE(s), or standard input, to standard output.

-A, –show-all
equivalent to -vET

-b, –number-nonblank
number nonempty output lines

-e     equivalent to -vE

-E, –show-ends
display $ at end of each line

-n, –number
number all output lines

-s, –squeeze-blank
suppress repeated empty output lines

-t     equivalent to -vT

-T, –show-tabs
display TAB characters as ^I

-u     (ignored)

-v, –show-nonprinting
use ^ and M- notation, except for LFD and TAB

–help display this help and exit

–version
output version information and exit

With no FILE, or when FILE is -, read standard input.

EXAMPLES
cat f - g
Output f’s contents, then standard input, then g’s contents.

cat    Copy standard input to standard output.

General, Linux, Programacion , ,

Nueva version de Ruby: Ruby 1.9.1

January 31st, 2009

En el 2003 se lanzó la primera versión de la serie 1.8 de Ruby y luego de un gran trabajo se ha lanzado la primera version estable de la serie 1.9.1 de Ruby.  Según he leído, esta nueva version es  DOS VECES MAS RAPIDA que la anterior version estable 1.8.x.

No me identifico con este lenguaje, realmente no me gusta tanto, pero tiene sus cosas.

Esta nueva version aun no soporta todas las GEMs que su anterior version,  es por eso que seria bueno que prueben todo lo que ustedes utilicen en versiones anteriores antes de migrar a la nueva version…

General, Programacion