pouar

diaperfurix.txt

Mar 16th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. DIAPERFURIX(6)
  2. ==============
  3. :doctype: manpage
  4.  
  5.  
  6. NAME
  7. ----
  8. diaperfurix - A diaperfur game with a unix-like design
  9.  
  10.  
  11. SYNOPSIS
  12. --------
  13. *new* 'player' 'gender' 'species'::
  14.  
  15. creates a new player
  16.  
  17. *interact* 'object' do 'command'::
  18.  
  19. runs 'command' on 'object'
  20.  
  21. *interact* 'object' take 'item'::
  22.  
  23. take an 'item' from 'object'
  24.  
  25. *interact* 'object' list::
  26.  
  27. list items in 'object'
  28.  
  29. *list* inventory::
  30.  
  31. list items in inventory
  32.  
  33. *list* objects::
  34.  
  35. list objects in room
  36.  
  37. *move* north|south|east|west|up|down::
  38.  
  39. move to room toward this direction
  40.  
  41.  
  42. DESCRIPTION
  43. -----------
  44. Diaperfurix is an experimental diaperfur/babyfur themed game that is played by typing commands in a Unix shell. It uses a filesystem hierarchy in place of variables for simplicity. It is written in the KornShell language and requires a POSIX system and a ksh compatable shell to play (Sorry ash users). Some shells that support the KornShell language include bash, zsh, ksh93, the modified ksh88 in various UNIXes, dtksh, loksh, mksh, and pdksh
  45.  
  46. You may need to set the shebang interpreter directive to the right shell by running the following in $DIAPERFURIX_HOME
  47.  
  48. [source,bash]
  49. ----
  50. find * -type f|xargs sed -i 's|^#!.*$|#!/path/to/shell|'
  51. ----
  52.  
  53. or if your sed can't do inplace editing
  54.  
  55. [source,bash]
  56. ----
  57. find * -type f|xargs perl -pi -e 's|^#!.*$|#!/path/to/shell|'
  58. ----
  59.  
  60. ENVIRONMENT
  61. -----------
  62. *DIAPERFURIX_HOME*::
  63.  
  64. path to the top directory of the game
  65.  
  66.  
  67. AUTHOR
  68. ------
  69. Pouar The Dragon <[email protected]>
Add Comment
Please, Sign In to add comment