Posts Tagged trash
Trash bin
I needed something to manipulate my trash bin, (I don’t like saying recycle bin. Too Windowsy ) so I wrote this little script, its not very featureful, but it does all I need it to do. trash.sh : #!/bin/bash path=”${HOME}/.local/share/Trash” let count=”$(ls -la ${path}/files/ | wc -l)-3″ if [ $count = '0' ]; then echo [...]