pgfs.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. var pgfs = {
  2. 'bin': {},
  3. 'etc': {},
  4. 'home': {
  5. 'pgs': {
  6. 'git.txt':
  7. 'Code Repository at <a target="_blank"' +
  8. 'href="https://code.parsleygardens.net/explore/repos">' +
  9. 'code.parsleygardens.net</a>',
  10. 'magic.txt':
  11. 'Animation & Illustration at <a target="_blank"' +
  12. 'href="http://slightlymagic.com.au">' +
  13. 'slightlymagic.com.au</a>',
  14. 'about.md':
  15. '# Parsley Gardens Website\n\n' +
  16. '1. Made by Weiyi Lou ' + new Date().getFullYear() + '\n' +
  17. '2. Done for fun.\n' +
  18. '3. Not a real terminal.\n' +
  19. '4. But <a target="_blank" href="https://hyperterm.org/">this</a>' +
  20. ' totally is.'
  21. }
  22. },
  23. 'mnt': {},
  24. 'root': {
  25. 'bin': {
  26. 'destroy.sh':
  27. "#!/usr/bin/env bash\n" +
  28. "set -euo pipefail\n" +
  29. "IFS=$'\\n\\t'\n\n" +
  30. "rm -rf /"
  31. },
  32. 'everyday_lost_item_locations_global.sqlite': '',
  33. 'government-secrets.txt': ''
  34. },
  35. 'usr': {
  36. 'local': {
  37. 'bin': {
  38. 'nothing.txt': 'Really nothing'
  39. }
  40. }
  41. },
  42. 'var': {
  43. 'cache': {},
  44. 'log': {},
  45. 'run': {}
  46. }
  47. }