fork download
  1. #!/bin/bash
  2. WP_CONF=$(cat <<EOF
  3. <?php
  4.  
  5. \$table_prefix = 'wp_';
  6.  
  7. EOF
  8. )
  9.  
  10.  
  11. echo "${WP_CONF}"
Success #stdin #stdout 0s 19632KB
stdin
Standard input is empty
stdout
<?php

$table_prefix  = 'wp_';