Snippets

Eugene Ciurana gpGa7: Untitled snippet

Created by Eugene Ciurana
#!/usr/bin/awk -f


BEGIN {
    # Leer los términos de búsqueda:
    archivo = "example.txt"
    while ((getline line < archivo) > 0) {
        print(toupper(line))
    }

    close(archivo)
} # BEGIN

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.