Advertisement
Advertisement
| 03.04.2008 at 07:17PM PST, ID: 23214886 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: |
For some reason, there is A GIGANTIC GAP HERE. Scroll down to see the rest. <table align="" border="1"><tbody><tr><td colspan="3">No, you don't. But I have to actually list some DOS commands for you. Really, enjoy them! For fun, I'm going to include the Linux counterpart if I remember it offhand. </td></tr><tr> <td>The DOS Command</td> <td>Why are you doing this again?</td> <td>The Corresponding Linux Command</td> </tr> <tr> <td>DIR</td> <td>Because the concept of navigating actual representations of folders scare you.</td> <td>ls</td> </tr> <tr> <td>TREE</td> <td>The scrolling of all the folders on your hard drive looks pretty</td> <td>ls -R</td> </tr> <tr> <td>CD</td> <td><p>You've had enough of typing "C:\Documents and Settings\All Users\Shared Documents\Shared Pictures\"</p> </td> <td>cd</td> </tr> <tr> <td>MKDIR (or MD)</td> <td>Because if you see one more defaultly-named "New Folder", you're gonna scream</td> <td>mkdir</td> </tr> <tr> <td>RMDIR (or RD)</td> <td>Because the concept of not being able to delete a folder until it is COMPLETELY EMPTY appeals to you</td> <td>rmdir</td> </tr> <tr> <td>DEL</td> <td>Sometimes, it for some reason works in deleting those more stubborn files. Also, you hate the recycle bin with a burning fiery passion</td> <td>rm -iv</td> </tr> <tr> <td>COPY</td> <td>You keep forgetting about CTRL+C and CTRL+V</td> <td>cp -piv</td> </tr> <tr> <td>XCOPY</td> <td>Doing a COPY command 16,000 times over isn't your ideal way to spend a sunday</td> <td>cp -R</td> </tr> <tr> <td>RENAME (or MOVE)</td> <td>You need your F2-ing and your CTRL+X/CTRL+V consolidated to a singule action</td> <td>mv -iv</td> </tr> </tbody></table> |