Bash Supprimer la dernière ligne d'un fichier

# Basic syntax:
sed -i '$d' input_file

# Note, -i means that the input_file will be modified in place
Charles-Alexandre Roy