Advertisement
Motorola6502

Untitled

Dec 23rd, 2024
870
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.09 KB | None | 0 0
  1. # reproduction
  2. #
  3. $ rot13
  4. Command 'rot13' not found, but can be installed with:
  5. sudo apt install hxtools
  6. #
  7. $ sudo apt install hxtools
  8. [sudo] password for <your_UID>
  9. #
  10. #
  11. # Reading package lists... Done
  12. Building dependency tree... Done
  13. Reading state information... Done
  14. The following additional packages will be installed:
  15.   libhx32
  16. The following NEW packages will be installed:
  17.   hxtools libhx32
  18. 0 upgraded, 2 newly installed, 0 to remove and 5 not upgraded.
  19. Need to get 181 kB of archives.
  20. After this operation, 692 kB of additional disk space will be used.
  21. Do you want to continue? [Y/n]
  22. Get:1 http://deb.debian.org/debian bookworm/main amd64 libhx32 amd64 4.10-1 [38.9 kB]
  23. Get:2 http://deb.debian.org/debian bookworm/main amd64 hxtools amd64 20221119-1 [142 kB]
  24. Fetched 181 kB in 1s (197 kB/s)
  25. Selecting previously unselected package libhx32:amd64.
  26. (Reading database ... 375257 files and directories currently installed.)
  27. Preparing to unpack .../libhx32_4.10-1_amd64.deb ...
  28. Unpacking libhx32:amd64 (4.10-1) ...
  29. Selecting previously unselected package hxtools.
  30. Preparing to unpack .../hxtools_20221119-1_amd64.deb ...
  31. Unpacking hxtools (20221119-1) ...
  32. Setting up libhx32:amd64 (4.10-1) ...
  33. Setting up hxtools (20221119-1) ...
  34. Processing triggers for man-db (2.11.2-2) ...
  35. Processing triggers for libc-bin (2.36-9+deb12u9) ...
  36. #
  37. #
  38. $ vim.athena rot_gag.nfo
  39. #
  40. $ man rot13
  41. #
  42. # rot13(1)                                          hxtools                                          rot13(1)
  43.  
  44. Name
  45.        rot13 — shortcut to tr(1) for ROT13
  46.  
  47. Syntax
  48.        rot13 [file...]
  49.  
  50. Description
  51.        ROT13  ("rotate  by  13 places", sometimes hyphenated ROT-13) is a simple letter substitution cipher
  52.        that replaces a letter with the letter 13 letters after it in the Latin alphabet.
  53.  
  54.        rot13(1) will call out to tr(1) to do this substitution, and will read from  standard  input  unless
  55.        some filenames are given.
  56.  
  57. See also
  58.        hxtools(7)
  59.  
  60. hxtools                                          2013-08-02                                        rot13(1)
  61. #
  62. #
  63. #
  64. $ rot13 rot_gag.nfo
  65.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement