Intro to Unix
Tom Kelliher, CS29
Feb. 11, 1997
Outline:
- Introduction.
- Hands-on lab.
- Windows 95.
- Telnetting to unix1.psych.westminster.edu.
- Logging in. Logging out.
- The shell.
- Choosing a good password. passwd.
- Files and directories. ( /users/kelliher, ..).
- Directory commands:
- cd, cd <name>
- ls, ls -l
- mkdir <name>
- pwd
- File commands:
- chmod u+x <name>
- pico <name>
- Running your perl program:
./<name.pl>
- Printing?
- The very first line of all perl programs:
#!/usr/contrib/bin/perl
- The (usual) last line of all perl programs:
exit 0;
Thomas P. Kelliher
Mon Feb 10 20:35:31 EST 1997
Tom Kelliher