Class machines: (below is what I would type) The name of the machines we want is research, after I type this I get a prompt that asks me for my password ssh research.asu.edu -l prewitt On line SAS Manual http://www.asu.edu/it/fyi/dst/helpdocs/statistics/sas/sasdoc/sashtml/stat /index.htm The following program and data were copied from the online SAS Manual The REG Procedure/Getting Started /Simple Linear Regression $ more regtest.sas title 'Simple Linear Regression'; data Class; options ls=78 ps=38; infile '/afs/asu.edu/users/p/r/e/prewitt/s429/regdat'; input Name $ Height Weight Age @@; ods html body="regtest.htm"; proc reg; model Weight = Height; plot r.*p.; run; ods html close; 313 stats > more regdat Alfred 69.0 112.5 14 Alice 56.5 84.0 13 Barbara 65.3 98.0 13 Carol 62.8 102.5 14 Henry 63.5 102.5 14 James 57.3 83.0 12 Jane 59.8 84.5 12 Janet 62.5 112.5 15 Jeffrey 62.5 84.0 13 John 59.0 99.5 12 Joyce 51.3 50.5 11 Judy 64.3 90.0 14 Louise 56.3 77.0 12 Mary 66.5 112.0 15 Philip 72.0 150.0 16 Robert 64.8 128.0 12 Ronald 67.0 133.0 15 Thomas 57.5 85.0 11 William 66.5 112.0 15 To see and print output: Click on Netscape and type in the box ftp://prewitt@research.asu.edu then a box appears and you will type your password $ ls total 112 20 olga.lst 2 regtest.sas 2 test.sas 16 olga 16 olga.sas 8 test.log 20 test1.htm 10 olga.log 2 regdat 14 test.lst 2 testdat $ sas_new regtest.sas & NOTE: Unable to open SASUSER.PROFILE. WORK.PROFILE will be opened instead. NOTE: All profile changes will be lost at the end of the session. regtest1.sas is below the star line will not be read by SAS title 'Simple Linear Regression'; data Class; options ls=78 ps=38; infile '/afs/asu.edu/users/p/r/e/prewitt/s429/regdat'; input Name $ Height Weight Age @@; *ods html body="regtest.htm"; proc reg; model Weight = Height; plot r.*p.; run; *ods html close; $sas_old regtest1.sas & NOTE: Unable to open SASUSER.PROFILE. WORK.PROFILE will be opened instead. NOTE: All profile changes will be lost at the end of the session. the above will get a plot on the page with the table or $sas regtest.sas & it seems that using sas_old will get the plot of the above $ pwd /afs/asu.edu/users/p/r/e/prewitt/s429 222 stats > cp olga olga2 $mkdir s429 Creating a file $ pico test.sas Commands of interest: cp,more,ls,logout,pwd,mkdir,cd,pico Creating a file $ pico test.sas