Differences between revisions 17 and 18
Revision 17 as of 2021-01-12 22:48:46
Size: 2429
Editor: HannahRoss
Comment:
Revision 18 as of 2021-01-12 22:49:10
Size: 2429
Editor: HannahRoss
Comment:
Deletions are marked like this. Additions are marked like this.
Line 26: Line 26:
||<tablewidth="200px" tablestyle="text-align:center">pwd ||print working directory || || ||<tablewidth="500px" tablestyle="text-align:center">pwd ||print working directory || ||

This is pretty much a stub page for now -- let's flesh it out soon with as many as possible of the resource links we have accumulated over time. For now, just putting up this link to Russ Poldrack's site so I (MJ) can get it out of my inbox from where I emailed it to myself:

Also, an off-the-top-of-my-head list of things we should also link up:

General Line Coding

Command Codes

What it DO

Notes

pwd

print working directory

ls

list for things in folder

ls -l

list with longer description

cd

change directory

move into a new folder

cd ../

change directory backwards

exiting a folder (it can stack: ../../)

clear

clears line from the terminal

mkdir

make directory/new folder

touch

makes a file in a folder

rmdir

remove/delete directory/folder

cp

creates copy

history

shows previous commands

mv

moves or renames files

move = mv file location, rename = mv new file name

rm

deletes files

sudo

admin order

put before the command

apt-get install

get app from the app store and install

file

shows file names

cat

shows contents of file

.

current directory

/

-

shortcut to home directory

rapwiki: ProgrammingResources (last edited 2021-01-12 22:49:50 by HannahRoss)