This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
notes:unix:fall2024:projects:tpb0 [2024/09/22 19:01] – [TOOLBOX] tkastne1 | notes:unix:fall2024:projects:tpb0 [2024/09/28 03:45] (current) – [TPB0] mwinter4 | ||
---|---|---|---|
Line 1: | Line 1: | ||
======TPB0====== | ======TPB0====== | ||
+ | In this puzzle box we will navigate around our terminal environment to retrieve the initial project files from <wrap hi>/ | ||
+ | |||
+ | After retrieving <wrap hi> | ||
+ | |||
+ | |||
=====TOOLBOX===== | =====TOOLBOX===== | ||
+ | |||
+ | * **base64**(**1**) - base64 encode/ | ||
* **chmod**(**1**) - change file mode bits | * **chmod**(**1**) - change file mode bits | ||
Line 11: | Line 18: | ||
* **mv**(**1**) - move (rename) files | * **mv**(**1**) - move (rename) files | ||
- | * **tac**(**1**) - concatenate and print files in reverse | + | * **tac**(**1**) - concatenate and print files in reverse |
+ | |||
+ | * **rev**(**1**) - concatenate and print files in reverse character-wise | ||
* **tar**(**1**) - an archiving utility | * **tar**(**1**) - an archiving utility | ||
* **uudecode**(**1**) - decode an uuencoded file | * **uudecode**(**1**) - decode an uuencoded file | ||
+ | |||
+ | * **grep**(**1**) - searching text within files | ||
+ | |||
+ | * **sort -n ** - sort file numerically by start of each line | ||
+ | * This will become especially useful towards the end of our puzzle box as it will allow us to sort our results which we will ultimately submit. You can pipe the results of this command into your *results* file directly. |