Files
StateGrid/install_shell/xrm.sh
Qin Bo 2235771f09 Initial commit
Signed-off-by: Qin Bo <bqin@linx-info.com>
2014-02-19 09:07:55 +08:00

15 lines
232 B
Bash

#!/bin/bash
files="$HOME/.xsession-errors "
for file in $files
do
size=$(du -ms $file | cut -f 1)
echo
date
if [ "$size" -gt 10 ]; then # If file is bigger than 10M
du -hs $file
echo > $file
fi
done