Snippets

Eugene Ciurana gpGa7: Untitled snippet

Created by Eugene Ciurana

File test.awk Added

  • Ignore whitespace
  • Hide word diff
+#!/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
HTTPS SSH

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