What and How to Use Split Command in Linux?

Das split command in Linux is a command line utility used for splitting a large file into smaller files. This can be useful for a variety of reasons, such as reducing the size of a large file for easier storage or sharing, or for dividing a file into smaller chunks that can be processed separately.

To use the split Befehl, you simply specify the input file and the size of the output files as follows:

Teilt [MÖGLICHKEIT]... [INPUT [PREFIX]]

Zum Beispiel, to split a file called large_file.txt into smaller files that are each 100MB in size, you would use the following command:

Teilt -b 100M large_file.txt

This would create a series of files called xaa, xab, xac, usw, each containing a portion of the original file.

Das split command also allows you to specify a prefix for the output files, so instead of using the default xaa, xab, xac, etc. naming scheme, you could specify your own prefix as follows:

Teilt -b 100M large_file.txt my_file_prefix_

This would create files called my_file_prefix_aa, my_file_prefix_ab, my_file_prefix_ac, usw.

Das split command has many other options and capabilities, such as the ability to split a file based on a specified number of lines rather than a specific file size, or the ability to split a file into equal-sized chunks rather than a specified size. To learn more about the split command and all of its options, you can consult the command’s manual page by using the man Befehl. Zum Beispiel, to view the manual page for the split Befehl, you would use the following command:

Mann Teilt

Was ist der split command in Linux?

  • Das split command in Linux is a command line utility used for splitting a large file into smaller files.

How do you use the split Befehl?

  • To use the split Befehl, you specify the input file and the size of the output files as follows: split [OPTION]... [INPUT [PREFIX]]. Zum Beispiel, to split a file called large_file.txt into smaller files that are each 100MB in size, you would use the following command: split -b 100M large_file.txt.

Can you specify a prefix for the output files?

  • Ja, das split command allows you to specify a prefix for the output files. Zum Beispiel, to use the prefix my_file_prefix_ for the output files, you would use the following command: split -b 100M large_file.txt my_file_prefix_. This would create files called my_file_prefix_aa, my_file_prefix_ab, my_file_prefix_ac, usw.

Can the split command split a file based on a specified number of lines?

  • Ja, das split command has the ability to split a file based on a specified number of lines rather than a specific file size. Um dies zu tun, du kannst den ... benutzen -l option followed by the number of lines to split the file on. Zum Beispiel, to split a file called large_file.txt into smaller files that each contain 1000 Linien, you would use the following command: split -l 1000 large_file.txt.

Can the split command split a file into equal-sized chunks?

  • Ja, das split command has the ability to split a file into equal-sized chunks. Um dies zu tun, du kannst den ... benutzen -n option followed by the number of equal-sized chunks to create. Zum Beispiel, to split a file called large_file.txt hinein 10 equal-sized chunks, you would use the following command: split -n 10 large_file.txt.

Über den Autor

Spieleblogger, Fallschirmspringerin und Mutter von 2. Ein Teilzeitautor und auch ein Gamer. Ab jetzt, Ich spiele Spiele nur auf meinem PC. Aber wer weiß, Vielleicht bekomme ich eines Tages eine PS4.