#!/bin/bash if [ $# -ne 0 ] then mv -f $* ~/.trash find ~/.trash -atime +2 -exec rm -v {} \; else echo "Ús: $0 fitxer..." fi