Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save slash-cyberpunk/5b9d41a916cc1ee9f4da231af32873b7 to your computer and use it in GitHub Desktop.
Save slash-cyberpunk/5b9d41a916cc1ee9f4da231af32873b7 to your computer and use it in GitHub Desktop.
Bash multiline from file to one line
tr '\n' ',' < requirements.txt | sed 's/,$/\n/'
or
paste -sd ',' requirements.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment