| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- var pgfs = {
- 'bin': {},
- 'etc': {},
- 'home': {
- 'pgs': {
- 'git.txt':
- 'Code Repository at <a target="_blank"' +
- 'href="https://code.parsleygardens.net/explore/repos">' +
- 'code.parsleygardens.net</a>',
- 'magic.txt':
- 'Animation & Illustration at <a target="_blank"' +
- 'href="http://slightlymagic.com.au">' +
- 'slightlymagic.com.au</a>',
- 'about.md':
- '# Parsley Gardens Website\n\n' +
- '1. Made by Weiyi Lou ' + new Date().getFullYear() + '\n' +
- '2. Done for fun.\n' +
- '3. Not a real terminal.\n' +
- '4. But <a target="_blank" href="https://hyper.is/">this</a> is.'
- }
- },
- 'mnt': {},
- 'root': {
- 'bin': {
- 'destroy.sh':
- "#!/usr/bin/env bash\n" +
- "set -euo pipefail\n" +
- "IFS=$'\\n\\t'\n\n" +
- "rm -rf /"
- },
- 'everyday_lost_item_locations_global.sqlite': '',
- 'government-secrets.txt': ''
- },
- 'usr': {
- 'local': {
- 'bin': {
- 'nothing.txt': 'Really nothing'
- }
- }
- },
- 'var': {
- 'cache': {},
- 'log': {},
- 'run': {}
- }
- }
|