sed -i ‘$d’ hobba
-i: to change the file itself, not copy contents to another file or something
$d: delete the last line
hobba: the file name
sed -i ‘$d’ hobba
-i: to change the file itself, not copy contents to another file or something
$d: delete the last line
hobba: the file name