pgfs.js 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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://hyper.is/">this</a> is.'
  20. }
  21. },
  22. 'mnt': {},
  23. 'root': {
  24. 'bin': {
  25. 'destroy.sh':
  26. "#!/usr/bin/env bash\n" +
  27. "set -euo pipefail\n" +
  28. "IFS=$'\\n\\t'\n\n" +
  29. "rm -rf /"
  30. },
  31. 'everyday_lost_item_locations_global.sqlite': '',
  32. 'government-secrets.txt': ''
  33. },
  34. 'usr': {
  35. 'local': {
  36. 'bin': {
  37. 'nothing.txt': 'Really nothing'
  38. }
  39. }
  40. },
  41. 'var': {
  42. 'cache': {},
  43. 'log': {},
  44. 'run': {}
  45. }
  46. }