Back to Homepage

Useful Tools and Commands

Editors and Tools for Different Platforms

Here are some useful editors and compilers for different operating systems:

Useful Links

GCC Example Command

gcc example.c gfx.c -o example -I/usr/X11R6/include -L/usr/X11R6/lib -lX11 -lm

Copy Files Using SSH

Here are the commands to copy files between local and remote systems using SSH, **you have to disconnect SSH sudo halt:

Single File

scp /path/to/local/file username@hostname:/path/to/remote/file
scp username@hostname:/path/to/remote/file /path/to/local/file

Directory

To copy a directory, use the -r flag:

scp -r pi@raspberrypi:/home/pi/Desktop/csc250DT2 /Users/isaiahkeating/Desktop