From 6b56f4a5b832961f2ac6b03a9e123d5ffd427cef Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Sat, 25 Jun 2011 10:16:46 +0000 Subject: [PATCH] - Fixed layout. Tabs on the terminal don't align nicely in most cases. --- sapi/cli/php_cli.c | 66 +++++++++++++++++++++++----------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index 6b8113ad17..5932c7cf8b 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -499,51 +499,51 @@ static void php_cli_usage(char *argv0) } printf( "Usage: %s [options] [-f] [--] [args...]\n" - " %s [options] -r [--] [args...]\n" - " %s [options] [-B ] -R [-E ] [--] [args...]\n" - " %s [options] [-B ] -F [-E ] [--] [args...]\n" - " %s [options] -- [args...]\n" - " %s [options] -a\n" + " %s [options] -r [--] [args...]\n" + " %s [options] [-B ] -R [-E ] [--] [args...]\n" + " %s [options] [-B ] -F [-E ] [--] [args...]\n" + " %s [options] -- [args...]\n" + " %s [options] -a\n" "\n" #if (HAVE_LIBREADLINE || HAVE_LIBEDIT) && !defined(COMPILE_DL_READLINE) - " -a Run as interactive shell\n" + " -a Run as interactive shell\n" #else - " -a Run interactively\n" + " -a Run interactively\n" #endif " -c | Look for php.ini file in this directory\n" - " -n No php.ini file will be used\n" - " -d foo[=bar] Define INI entry foo with value 'bar'\n" - " -e Generate extended information for debugger/profiler\n" - " -f Parse and execute .\n" - " -h This help\n" - " -i PHP information\n" - " -l Syntax check only (lint)\n" - " -m Show compiled in modules\n" - " -r Run PHP without using script tags \n" + " -n No php.ini file will be used\n" + " -d foo[=bar] Define INI entry foo with value 'bar'\n" + " -e Generate extended information for debugger/profiler\n" + " -f Parse and execute .\n" + " -h This help\n" + " -i PHP information\n" + " -l Syntax check only (lint)\n" + " -m Show compiled in modules\n" + " -r Run PHP without using script tags \n" " -B Run PHP before processing input lines\n" - " -R Run PHP for every input line\n" - " -F Parse and execute for every input line\n" - " -E Run PHP after processing all input lines\n" - " -H Hide any passed arguments from external tools.\n" + " -R Run PHP for every input line\n" + " -F Parse and execute for every input line\n" + " -E Run PHP after processing all input lines\n" + " -H Hide any passed arguments from external tools.\n" " -S : Run with built-in web server.\n" - " -t Specify document root for bult-in web server.\n" - " -s Output HTML syntax highlighted source.\n" - " -v Version number\n" - " -w Output source with stripped comments and whitespace.\n" - " -z Load Zend extension .\n" + " -t Specify document root for bult-in web server.\n" + " -s Output HTML syntax highlighted source.\n" + " -v Version number\n" + " -w Output source with stripped comments and whitespace.\n" + " -z Load Zend extension .\n" "\n" - " args... Arguments passed to script. Use -- args when first argument\n" - " starts with - or script is read from stdin\n" + " args... Arguments passed to script. Use -- args when first argument\n" + " starts with - or script is read from stdin\n" "\n" - " --ini Show configuration file names\n" + " --ini Show configuration file names\n" "\n" #if (HAVE_REFLECTION) - " --rf Show information about function .\n" - " --rc Show information about class .\n" - " --re Show information about extension .\n" - " --rz Show information about Zend extension .\n" + " --rf Show information about function .\n" + " --rc Show information about class .\n" + " --re Show information about extension .\n" + " --rz Show information about Zend extension .\n" #endif - " --ri Show configuration for extension .\n" + " --ri Show configuration for extension .\n" "\n" , prog, prog, prog, prog, prog, prog); } -- 2.40.0