InterviewSolution
Saved Bookmarks
| 1. |
How Can You Split A File In Unix? |
|
Answer» The split command can be used to split a file in UNIX; for EXAMPLE, split -I 2000 filetosplit.txt splittedfile.txt. The split command can be used to split a file in UNIX; for example, split -I 2000 filetosplit.txt splittedfile.txt. |
|