Skip to content

Instantly share code, notes, and snippets.

@PythonCoderAS
Created May 14, 2022 14:10
Show Gist options
  • Select an option

  • Save PythonCoderAS/8380a259ac3c19a0a0b55a0e34ba14f2 to your computer and use it in GitHub Desktop.

Select an option

Save PythonCoderAS/8380a259ac3c19a0a0b55a0e34ba14f2 to your computer and use it in GitHub Desktop.
zsh one-liner to get first word from every line in clipboard and separate by spaces #oh-my-zsh #awk #sed
echo `clippaste | awk '{print $1}' | sed 's/://g'` | clipcopy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment