Guest User

Untitled

a guest
Aug 14th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. ## File operations
  2.  
  3. Copy a file
  4. ```bash
  5. cp <source> <destination>
  6. ```
  7.  
  8. ## File examination
  9.  
  10. List all files in a directory
  11. ```bash
  12. ls -la
  13. ```
  14.  
  15. Count the number of lines in a file (word count - line)
  16. ```bash
  17. wc -l <file>
  18. ```
  19.  
  20. ## MongoDB
Add Comment
Please, Sign In to add comment