Skip to content

Instantly share code, notes, and snippets.

@angelbladex
Created October 22, 2013 15:34
Show Gist options
  • Select an option

  • Save angelbladex/7102868 to your computer and use it in GitHub Desktop.

Select an option

Save angelbladex/7102868 to your computer and use it in GitHub Desktop.
Script para pasar a minúsculas, todo lo que recibe
#!/bin/bash
#Convierte a minúsculas todos los parámetros que recibe
echo $@ | awk '{print tolower($0)}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment