Skip to content

Instantly share code, notes, and snippets.

@angelbladex
Created October 22, 2013 15:32
Show Gist options
  • Save angelbladex/7102819 to your computer and use it in GitHub Desktop.
Save angelbladex/7102819 to your computer and use it in GitHub Desktop.
Script para pasar a mayúsculas, todo lo que recibe
#!/bin/bash
#Convierte a mayúsculas todos los parámetros que recibe
echo $@ | awk '{print toupper($0)}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment