Skip to content

Instantly share code, notes, and snippets.

@gbirke
Last active March 27, 2016 09:48
Show Gist options
  • Save gbirke/3818892 to your computer and use it in GitHub Desktop.
Save gbirke/3818892 to your computer and use it in GitHub Desktop.
Show DokuWiki meta files in shell
#!/usr/bin/env php
<?php
/**
* Show DokuWiki meta data on the command line
*
* @author Gabriel Birke <[email protected]>
*/
$file = $argv[1];
if(!file_exists($file)) {
die("$file not found.\n");
}
$meta = unserialize(file_get_contents($file));
print_r($meta);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment