Re: Command line trash bin access
Do you mean this? I'm not sure because you didn't quote the part you're talking about.
It echoes back what was passed on the command line, which is useful if you want to see how variables and wild-cards are expanded. I think it would be more useful to report files which were actually moved to trash.
Originally posted by olembe
Code:
#! /bin/bash kfmclient move $@ "trash:/" echo Moved to trash bin: for filename in $@ do echo $filename done
Comment