Skip to content

Instantly share code, notes, and snippets.

@AvasDream
Last active October 14, 2018 12:53
Show Gist options
  • Save AvasDream/892d264ce495308cf5700c9c38737382 to your computer and use it in GitHub Desktop.
Save AvasDream/892d264ce495308cf5700c9c38737382 to your computer and use it in GitHub Desktop.
My personal cheatsheet for String manipulation in Linux

From upper to lowercase

cat string | tr '[:upper:]' '[:lower:]

Cut spaces from string

tr -d ' '

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment