“Hapus dua baris pertama file linux” Kode Jawaban

bash cara menghapus baris n pertama file

# Example usage (3 options):
tail -n +43 input_file	# Print from the 43rd line on
sed 1,42d input_file	# Print from the 43rd line on
sed -i 1,42d input_file	# Remove the first 42 lines in place (meaning 
	# that the file is changed without having to print the output to a 
    # new file)
Charles-Alexandre Roy

Hapus dua baris pertama file linux

$ sed -i -e 1,3d vmr_nonprod
Worrisome Wasp

Jawaban yang mirip dengan “Hapus dua baris pertama file linux”

Pertanyaan yang mirip dengan “Hapus dua baris pertama file linux”

Lebih banyak jawaban terkait untuk “Hapus dua baris pertama file linux” di Shell/Bash

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya