About 1 hour
none
Which companies use the Command Line? Every company will expect you to be able to navigate the Command Line.
$ cd Downloads/
If you recently purchased a Mac with the latest operating system, Catalina, zsh is already installed by default. You can check your current default shell by entering the command below:
echo $SHELL
If the result turns out to be /bin/zsh
, then you already have zsh set as your default shell. If not, you can change your default shell using the chsh
command:
chsh -s /bin/zsh
When prompted, enter your password. Log off your terminal and log back on for the changes to apply.
If you do not have zsh installed yet, you can install it using Homebrew.
If you have Homebrew installed, use this command:
brew install zsh
If your system does not have Homebrew installed, you need to have Xcode installed first. To check and see if you have Xcode installed, enter the following in the Terminal:
spctl --assess --verbose /Applications/Xcode.app
The results should have one of these messages appear:
/Applications/Xcode.app: accepted
source=Mac App Store
/Applications/Xcode.app: accepted
source=Apple
/Applications/Xcode.app: accepted
source=Apple System
If the results are anything else other than the above three, you can install Xcode from the Mac App Store. Once you have XCode installed, you can install Homebrew by entering this in the Terminal below:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
You can also check that Homebrew is installed by accessing their help section:
brew help
With both XCode and Homebrew installed, you can install zsh with the following command:
brew install zsh
After installation, you can set zsh as your default shell with the command below:
chsh -s /bin/zsh
Lastly, log out of your Terminal and log back in. You can check again to be sure that zsh is your default shell:
echo $SHELL
The result should give you the default shell the Terminal was set up and shell’s current version installed.
Participants will be able to: - Create a directory and files - Navigate to a directory - Change the name of the file - Copy a file to a directory
Video walkthrough of lesson slides: Command Line Interface
Read through lesson slides: Command Line Interface
COMMAND
key and press the spacebar once. This opens the OSX launcher, Spotlight.ENTER
to launch the Terminal app.man - read a manual page
apropos - find what man page is appropriate
pwd - print working directory
cd - change directory
echo - print some arguments
ls - list directory
find - find files
mkdir - make directory
cd - change directory
rmdir -remove directory
pushd - push directory
popd - pop directory
cp - copy a file or directory
mv - move or rename a file or directory
hostname - my computer’s network name
less - page through
more - page through (alternate)
history - see previous commands from this shell
head - print the start
tail - print the end
mkdir - make directory
rmdir - remove directory
grep - find things inside files
cat - print the whole file
man - read a manual page for a program
env - look at your environment
export - export/set a new environment variable
which - see path to a program
exit - exit the shell
sudo - become the super user, root (DANGER - only use when necessary)
chmod - change permission modifiers
chown - change ownership
Instructor demonstrates how to use many of the above commands in the video walkthrough of the lesson slides.
“I have always just downloaded everything I need with my mouse. I don’t need to use the CLI.” As you continue programming, you will learn new languages and tools. There are some important tools out there that can only be accessed via CLI. One example is NPM (node package manager), which we’ll use in a few weeks.
“I am afraid of getting into the wrong directory. Isn’t it easier to just click and type?” There are simple commands you can run in the CLI to check which directory you’re in. Once you get into the habit of using the CLI, you can quickly navigate through files and directories without leaving the keyboard, greatly increasing speed and efficiency.
“What if I accidentally delete important directories or files that affect my computer’s operations?” Most files and directories for computer operation are protected in some way. They could be hidden or have higher permission settings. Hidden files, for example, have a dot in front of their file name, and you can’t see them without certain commands or special settings. If you are editing such files and you don’t know why, please check with the instructor.
helloThisIsCamelCase becauseCamelsHaveHumps
this_is_snake_case there_are_snake_friends_between_words
this-is-kebab-case it-looks-like-the-words-are-stuck-on-kebabs
We use camelCase in JavaScript! We tend to use snake_case.html for filenames on Unix & Linux systems. We tend to use kebab-case for directory (folder) names and git repository names.
Navigate to your Desktop. Create a directory named “foo”. Use cd foo
to navigate into “foo” and create another directory named “bar”.
Run cd bar
. What directory are you in now? Check by running pwd
.
Run cd ../
. What directory do you think you are in now? Check by running pwd
.
Navigate back to the “bar” directory and run touch first.txt
and touch ../second.txt
. You have not cd
’d into the “foo” directory, but your second command contained ../
. Can you guess where second.txt
is located?
Check your answer by running ls
inside both the “foo” and the “bar” directory. The second.txt
file should be inside the “foo” directory.
Navigate into the “bar” directory. Run cp first.txt ../
. Use ls
and make sure both directories have a first.txt
file.
Navigate back into the “foo” directory. Run mv second.txt foofile.txt
, then run ls
. What happened to “second.txt”?
Use TAB key
to autocomplete the names of directories and files while in the command line faster as it’ll autocomplete the string as far as it can before you have to disambiguate. Hit the tab twice to see the list of autocomplete possibilities (if multiple matches).
The root directory is the directory that contains all other directories and files on the system and which is designated by a forward slash ( / ). Root is the very top directory of the directory tree diagram. The root directory of a GitHub project is the top most directory of your git project which contains all the files hosted on GitHub.
You can immediately open whatever folder or directory you are working within into the Finder of MacOS and Mac OS X by simply typing open .
and executing it
open
is not magically connected to Mac’s Finder, but actually it’s just using whatever default program on your Mac opens a file with that extension, and in the case of directories, the default program is Finder.
Another Mac shortcut cmd+ shift+ g
can be used anywhere you see a Finder window (even in other Mac programs such as SourceTree or VSCode when you’re opening a file or directory). This brings up a little text box into which you can type or paste a path. Use pwd
to get your current path, then copy it from the terminal and open up SourceTree, go to file > open, then use cmd + shift + g
to paste in the path you want.
ls
command is used to peek into other folders. The list of ls arguments are ls -l
: shows file or directory, size, modified date and time, file or folder name and owner of file and its permission. ls -a
: lists all the files including hidden files. ls -lh
: shows sizes in human readable format.
cd ~
cd ..
cd -
cd /
cd ~/OFGT-data/images
to go directly to the images subdirectory in the OFGT-data folder. As another example, cd ~/Desktop
will move you to the Desktop subdirectory inside your home directory.cat /home/kt/abc.sql
It starts at your current directory and never starts with a ( / ). For Example:
$pwd
/home/kt
$cd abc
Run the ls -l
command in the “foo” directory and compare it to the outcome of just running the ls
command. The output from ls -l
is different – how?
Next, run man ls
. Scroll to the bolded title “The Long Format”. The first few paragraphs talk about what -l
displays. Look for the one that starts with “The file mode…”. Read it and see if your guess is correct.
Scroll through the manual and see if you can get an idea of what the format of a manual is typically like. Feel free to check out the manual for some of the command above. Whenever you are done, type q
to exit.
Click here to learn more advanced commands.
Oh My ZSH is a framework created specifically for configuring and customizing zsh. You can download a variety of plugins and themes to customize your look and efficiency of your Terminal. Please follow the guidelines here on how to set up and install Oh My ZSH.
You can also use the complete Oh My ZSH Wiki on how to customize and configure your Terminal further.
In some cases, you would see mentions and suggestions to download and use third-party CLIs such as iTerm
(or cygwin
for Windows PC users) instead of the default Terminal installed in your system. On the list of themes in Oh My ZSH, some of them will require these third-party CLIs in order to make these themes work. For the sake of this course, we will stick to the default Terminal. Please be sure to choose a theme on the list that is compatible with all CLIs.