Skip to content

Instantly share code, notes, and snippets.

@zllovesuki
Created June 16, 2014 06:07
Show Gist options
  • Save zllovesuki/b8f02570ef3787fbe63a to your computer and use it in GitHub Desktop.
Save zllovesuki/b8f02570ef3787fbe63a to your computer and use it in GitHub Desktop.
cp commands generator
<?php
$string = 'put
the
ldd /path/to/convert
results
in
here';
$array = explode("\n", $string);
foreach ($array as $single) {
if(($pos = strpos($single, '=> ')) !== false){
$new_str = preg_replace('/ \(0.*/', '', substr($single, $pos + 4));
}
echo "yes n | cp -i /".$new_str." /home/dir/".$new_str."\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment