mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-27 01:02:41 +01:00
9 lines
159 B
PHP
9 lines
159 B
PHP
|
<?php
|
||
|
|
||
|
$args = array_slice($argv, 1);
|
||
|
foreach ($args as $key => $arg) {
|
||
|
$args[$key] = addcslashes($arg, "\\\n");
|
||
|
}
|
||
|
$args = implode($args, "\n");
|
||
|
echo $args;
|