“Удалить первые две строки файла linux” Ответ

Bash, как удалить первые n строки файла

# 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

Удалить первые две строки файла linux

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

Ответы похожие на “Удалить первые две строки файла linux”

Вопросы похожие на “Удалить первые две строки файла linux”

Больше похожих ответов на “Удалить первые две строки файла linux” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования