FRC 6045 Programming Website!
The purpose of this website is to make it easier to find programming-related things that are used or made by FRC 6045.
How to navigate files in Terminal (Mac)
To navigate folders from within Terminal, you can use the commands cd, ls, pwd, and mv.
- cd changes the directory that you are in.
- ls lists the files and folders within your current directory.
- mv moves files and folders.
- pwd prints the filepath of your current folder.
For example, imagine that you have a folder called 6045, with folders inside it called robot and website.
The robot folder is currently empty, while the website folder has a file called website.html. You are currently in the 6045 folder.
Enter ls to learn that robot and website are in the folder.
Enter pwd to learn the location of the 6045 folder.
Enter cd robot to move to the robot folder.
Enter cd .. to move back up one level in the folder structure (back to the 6045 folder).
Enter cd website to move to the website folder.
Enter mv website.html ../robot to move the website.html file into the robot folder (through the 6045 folder).
Enter ls to learn that the website folder is now empty.