Skip to content

Instantly share code, notes, and snippets.

@detj
Created May 31, 2024 07:21
Show Gist options
  • Save detj/5e0197d470f205c03522220807f273b6 to your computer and use it in GitHub Desktop.
Save detj/5e0197d470f205c03522220807f273b6 to your computer and use it in GitHub Desktop.
replace-newlines.sh
#!/usr/bin/env bash
# Syntax
# awk '{gsub("\\n", "\n"}; print' <file>
# Example
awk '{gsub("\\n", "\n"}; print' some-file.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment