The solution is a simple CSS rule:
<body style="overflow:hidden">
<body style="overflow:hidden">
$ ssh hostname tail -retry -follow=name /var/log/sample.log
$ date -d @1212312323
Sun Jun 1 13:25:23 GST 2008
alias del='mv -t ~/.local/share/Trash/files --backup=t'Deleting files now is done via
del filename.txt.
#!/bin/bash
#
# This will delete all files in the trash directory
# that is older than the specified KEEPDAYS
#
# It can be run using a cron job or manually
#
TRASHDIR=~/.local/share/Trash/files/
KEEPDAYS=14
find $TRASHDIR -mtime +${KEEPDAYS} -exec /bin/rm -f {} \;
chmod +x cleantrash
so we can execute it.