mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-08 16:02:39 +01:00
10 lines
178 B
PHP
10 lines
178 B
PHP
|
#!/usr/bin/env php
|
||
|
<?php
|
||
|
|
||
|
$args = array_slice($argv, 1);
|
||
|
foreach ($args as $key => $arg) {
|
||
|
$args[$key] = addcslashes($arg, "\\\n");
|
||
|
}
|
||
|
$args = implode("\n", $args);
|
||
|
echo $args;
|