quiz 1-5 review Flashcards
(37 cards)
pwd
print working directory
ssh
connect to remote machine
make
invoke Makefile to compile program
gcc
compile program such as C program
tar
work with .tar archive files or directories
grep
search for text in files
cp
copy file/directory
history
show list of most recently entered commands
top
display table of processes (i.e. programs) being run by users of computer
touch
create blank file if it doesn’t exist else update its modification timestamp to present time
wget
download file from internet
mkdir
make empty directory
mv
move or rename files
ls
list directory contents
hostname
show name of computer
diff
compare two files line by line (assuming they are text files)
scp
copy files, usually btwn two computers
cd
change working directory
argv[0]
./executable_name
break
exit closest outside loop or exit switch statement
continue
skip to next iteration of outside loop
static
variable initialized once and retains its value across multiple function calls
stack buffer overflow
trying to access array element at too high of an index
stack buffer underflow
trying to access array element at too low of an index