1 2 3 4 5 6 7 8 9 10 11 | # Escribir en fichero echo "Hola" > fichero # Leer el contenido de un fichero línea a línea #! /bin/bash while read line do echo -e "$line\n" done < fichero |

1 2 3 4 5 6 7 8 9 10 11 | # Escribir en fichero echo "Hola" > fichero # Leer el contenido de un fichero línea a línea #! /bin/bash while read line do echo -e "$line\n" done < fichero |