2016-05-10 Ever wondered what the numbers in the output of free(1) really mean? Today I learned to understand it better: [0] Wrote a script to remove From_ lines form MH messages. [1] (From_ lines are not valid in RFC822 messages, but were tolerated by the old m_getfld() implementation. With mmh's switch to Philipp's m_getfld2(), they produced format errors ... which they actually are.) My script uses ed(1) for the editing ... I like to use ed(1) in scripts! ... mainly because nobody else does. :-) How to remove files with strange names? A convincing idea is to use `ls -i' and then remove by inumber: [2] https://debianforum.de/forum/viewtopic.php?f=29&t=160752#p1090584 find . -maxdepth 1 -inum $INODE -exec rm -i {} [0] https://dropbear.xyz/2016/05/07/displaying-linux-memory/ [1] http://article.gmane.org/gmane.mail.mmh/291 [2] http://marmaro.de/lue/ markus schnalke