[TentacleWiki] [TitleIndex] [WordIndex

Unix commands as they'd be typed into a prompt, read the lessons for clarification or instructions. Anything in //'s is a description of what should be there rather than a real life example of what needs to be there. Everything after the ;; are comments on what it does.


---

Other stuff to know:

  1. * is a wildcard character that allows it to be any file name or directory path, an example of usage would be cd pub* which would change your directory to the directory named public_html, or public_hair, or pubblah, or pubetc, you get the idea. less * will list everything in your directory with less. rm * will remove every file in your current directory, use with knowledge and caution.
  2. Tab completion is when you hit tab to complete something you've partially typed, for example cd pub/youhittabratherthan*lic_html/ will cause unix to make cd pub into cd public_html assuming that you've typed enough to make it unique. cd p/hittab/ will do the same thing most likely, unless you've got another directory that starts with the letter p.
  3. Pressing the up arrow key will scroll up through your history of commands, and the down arrow will scroll down through it.

2020-10-05 00:39