1/43
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
how to see current directory?
pwd. output looks like: /home/accts/ehs72/tutorial
how to change directory?
cd dirname. no output
how to make directory?
mkdir newdirname
how to rename file or directory?
mv oldname newname
how to move files into different directories?
mv filename dirname
how to print current date or time?
date. ex: Mon Mar 31 01:54:18 PM EDT 2025
how to create new file?
touch newfilename
how to update modification date and time of a file?
touch oldfilename. results from this can be seen with ls -l
how to copy a file?
cp filename copyfilename
how to copy a directory?
cp -r dirname copydir
how to remove file?
rm file
how to remove directory?
rmdir dirnam
how to print out file?
cat file
how to print first lines of file
head
how to print last lines of file
tail
removes any directory even if not empty
rmdir -r
asks for permission before removing
rm -i / rmdir -i
prints out first five lines of filename
head -n 5 filename
how to just print something
echo ââwhateverââ
how to change contense of file?
echo ~your words~ > oldfilename
how to make a new file with words you want in it
echo ~your words~ > newfilename
how to add lines to a file contianing the words you want?
echo ~your words~ » oldfilename
returns the number of lines words and characters in filename
wc filename. ex: Â 1Â 2 10 newcrazyfile
what is like wc but without the filename?
wc < filename ex: Â 1Â 2 10
what stands for any character
?
what stands for any length string?
*
how to display the differences between two files?
diff file1 file2 ex: 1,2c1
< apple orange banana
< kiwi mango
---
> hello world
(< means its in file1, > means itâs in file2)
how to return a line from a file containing a certain string?
grep string filename
how to use grep to find all html files?
ls | grep html
how to use grep to find all instances of âhello worldâ in file1 and file2
cat file1 file2 | grep âhello worldâ
how to determine type of file?
file filename ex: comp1: directory
how to print out username?
whoami ex: esimmons ex: ehs72
what is this the output of: uid=25324708(ehs72) gid=25324708(ehs72) groups=25324708(ehs72),20166(202501_cpsc.201.01-student)
id
what is this the output of:  15:21:06 up 14 days, 5:55, 2 users, load average: 0.21, 0.22, 0.20
uptime
what is this the output of:
qam6 Â Â pts/12 Â Â Â 2025-03-31 15:09 (172.27.75.217)
ehs72Â Â pts/16 Â Â Â 2025-03-31 15:19 (172.27.203.240)
who
what is this the output of:  15:24:16 up 14 days, 5:58, 2 users, load average:
0.35, 0.28, 0.22
USER Â Â TTYÂ Â Â FROM Â Â Â Â Â Â LOGIN@ Â IDLE Â JCPU Â PCPU WHAT
qam6   pts/12  172.27.75.217  15:09  11:47  0.02s 0.01s python3 /c/cs20
ehs72  pts/16  172.27.203.240  15:19  0.00s 0.01s 0.00s w
w
what is this the output of: esimmons Â
ttys000 Â Â Â Â Â Â Â Â Â Â Â Â Mon Mar 31 15:33 Â still logged in
esimmons  ttys000             Mon Mar 31 15:17 - 15:17 (00:00)
esimmons  ttys000             Mon Mar 31 15:16 - 15:16 (00:00)
esimmons  ttys000             Mon Mar 31 14:30 - 14:30 (00:00)
esimmons  ttys000             Mon Mar 31 13:48 - 13:48 (00:00)
esimmons  ttys000             Mon Mar 31 13:43 - 13:43 (00:00)
esimmons  ttys000             Mon Mar 31 13:38 - 13:38 (00:00)
esimmons  ttys000             Mon Mar 31 13:38 - 13:38 (00:00)
esimmons  ttys000             Sun Mar 30 13:16 - 13:16 (00:00)
esimmons  ttys000             Tue Mar 25 16:52 - 16:52 (00:00)
last
what is this the output of: Darwin
uname
what is this the output of:
4 ./.ssh
204 ./.config/pulse
du (disk storage)
what is this the output of: Â Â Â Â Â Â Â
 total    used    free   shared buff/cache  available
Mem: Â Â Â 131456752 Â Â 4799364Â Â 59037008 Â Â Â 56476Â Â 67620380 Â 125348616
Swap:Â Â Â Â 2097148 Â Â Â Â Â 0 Â Â 2097148
free
what is this the output of:
Login: sbs5 Â Â Â Â Â Name: Slade Stephen
Directory: /home/accts/sbs5 Â Â Â Â Shell: /bin/bash
Last login Mon Mar 31 10:24 (EDT) on pts/0 from 10.66.205.218
No mail.
No Plan.
finger sbs5
how are read write execute permissions stored?
3 bits for you, group, and world. in order read write execute. represented in binary.
how to change permissions on a file or directory?
chmod 777 (or other number) file-or-dir-name
how to change owner or group?
chown/chgrp new-owner file