Tagged Questions

10
votes
6answers
1k views

how to remove large amount of files using rm

I tried to remove around 7,000 log files under a directory by using rm *.log but failed with error message "too long argument list" . Is there any way to slove it ? thanks .
3
votes
5answers
2k views

Is there any trivial way to 'delete by date' using ´rm'- in bash?

I noticed today (after ~8 years of happily hacking away at bash) that there is no trivial way to 'delete by date' using ´rm'. The solution is therefore to pipe stuff around a combination of commands ...
1
vote
0answers
42 views

Does rm -f follow symbolic links? [migrated]

I have a directory like this: $ ls -l total 899166 drwxr-xr-x 12 me scicomp 324 Jan 24 13:47 data -rw-r--r-- 1 me scicomp 84188 Jan 24 13:47 lod-thin-1.000000-0.010000-0.030000.rda ...
1
vote
1answer
716 views

Recursively unzip files and then delete original file, leaving unzipped files in place from shell

I've so far figured out how to use find to recursively unzip all the files: find . -depth -name `*.zip` -exec /usr/bin/unzip -n {} \; But, I can't figure out how to remove the zip files one at a ...
1
vote
2answers
440 views

modify shell script to delete folders as well as files

My shell script: #!/bin/bash if [ $# -lt 2 ] then echo "$0 : Not enough argument supplied. 2 Arguments needed." echo "Argument 1: -d for debug (lists files it will remove) or -e for ...
0
votes
3answers
316 views

Using find to delete all subdirectories (and their files)

I'm sure this is straight forward and answered somewhere, but I didn't manage to find what I was looking for. Basically, I'm trying to run a cron script to clear the contents of a given directory ...
-1
votes
0answers
44 views

Best practices to alias the rm command and make it safer [migrated]

Some time ago I erroneously deleted my home folder because I ran a rm -rf * on the wrong terminal, whose working directory was the home folder! I wish I had an alias for the rm command, but it was ...