#Printing datasets in SAS
proc print data=work.intro;
run;| type file1 >> file2 |
| How to move files in the Windows command line (MS-DOS) | |
| move stats.doc c:\statistics | |
| If you'd like to move multiple files, you can separate the file names with a comma, as in the following command. | |
| move stats.doc, morestats.doc c:\statistics | |
| In the next example, we are moving the file "example.doc" to the D:\ drive. |
| Examples: | |
| Delete "Hello World.txt" | |
| DEL "Hello World.txt" | |
| Delete 3 named files: | |
| DEL file1.txt file2.txt "C:\demo\file3.txt" |
| powershell -Command "(gc combined.xml) -replace '<root>', '' | Out-File updatedXML.xml" |
| for %f in (*.xml) do type "%f" >> combined.xml |
| find "martin hendrikx" C:\Users\Martin\Desktop\exercise.txt |
#SWIRL
Its basically a package that if installed can help in learning and practicing R, right inside the R console.