Hi there,
I have a file I that I want to change all text within to uppercase. I would like to learn this using sed.
I was thinking
sed 's/[a-z]/[A-Z]/g' might be my answer, but it doesn't seem to work. Any ideas guys?
I have a file I that I want to change all text within to uppercase. I would like to learn this using sed.
I was thinking
sed 's/[a-z]/[A-Z]/g' might be my answer, but it doesn't seem to work. Any ideas guys?
Comment