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 parsibox/9edd25756894e1a584ae3bf3a45d441c to your computer and use it in GitHub Desktop.
Save parsibox/9edd25756894e1a584ae3bf3a45d441c to your computer and use it in GitHub Desktop.
reading a file and convert it to single line variable in bash script
DATE="$(awk '{ printf "%s", $0 }' /var/www/s.php)" ;
@parsibox
Copy link
Author

DATE="$(cat /var/www/s.php)"
DATE="$(echo "${DATE//$'\n'/<br />}" | sed 's#^<br />##g')"

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