Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 .
6
votes
3answers
318 views

Git: need to recursively 'git rm' the contents of all bin and obj folders

Someone by accident just commited all of their bin and obj folders to our repo (there are around 40 such folders). I would like to do a git rm -r on all of these folders. Is there a command to do ...
5
votes
3answers
387 views

git: how to add/commit removals made via vanilla rm?

I deleted a bunch of files / directories from a git repository using rm, the Finder, etc. I'm looking for a git command that'll record these to the index as marked for removal. (As if I had called ...
4
votes
3answers
3k views

Unable to recover a file in Git

I have two branches in my Git, master and newFeature. At the branch newFeature, I removed the fileA physically first in terminal and then in Git by git rm fileA Subsequently, I run git add . git ...
3
votes
1answer
106 views

How to efficiently delete a long list/array of files and dirs in perl

This is how I currently delete files and directories recursively foreach my $row(keys %$rows) { my $md5 = $rows->{$row}->{'md5'}; my $path = "/some/path/jpg/".substr( $md5, 0, 3 ...
3
votes
1answer
115 views

Why does `rm -rf` behave differently when used in a git post-receive hook as opposed to shell?

I'm using this example on publishing a website w/ git post receive hooks. The hook pretty much clones the bare repo into a temporary directory, and after generating the site, removes that temporary ...
3
votes
3answers
5k views

Unable to remove files recursively from Git

I want to remove all files from Git at ~/bin/. I run git rm -r --cached ~/.vim/* # Thanks to Pate in finding --cached! I get fatal: pathspec '.vim/colors' did not match any ...
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 ...
2
votes
4answers
150 views

If running cp in a perl script will files that exist be overwritten?

I have a program that will generate pixel intensity values for png images and often those images must be overwritten with new files of the same name because of some failure with the original resulting ...
2
votes
5answers
167 views

remove files when name does NOT contain some words

I am using Linux and intend to remove some files using shell. I have some files in my folder, some filenames contain the word "good", others don't. For example: ssgood.wmv ssbad.wmv goodboy.wmv ...
2
votes
3answers
223 views

Remove files created between certain time stamps

Last night I had a script go a bit crazy and create a bunch of directories between 3:00 and 3:09am. Is there a quick one liner that will hunt these down and remove them for me?
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
3answers
111 views

Remove all files that does not have the following extensions in Linux

I have a list of extensions avi,mkv,wmv,mp4,mp5,flv,M4V,mpeg,mov,m1v,m2v,3gp,avchd I want to remove all files without the following extensions aswell as files without extension in a directory in ...
1
vote
3answers
78 views

How to delete all files that were recently created in a directory in linux?

I untarred something into a directory that already contained a lot of things. I wanted to untar into a separate directory instead. Now there are too many files to distinguish between. However the ...
1
vote
1answer
56 views

play .rm audio files in c#

Hi i want to play streaming .rm file which is hosted online on my c# windows application with play,pause,stop,volume control, options Any Help would be apreciated Thank you
1
vote
1answer
721 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
3answers
890 views

Linux delete file with size 0

how do i delete a certain file in linux if its size is 0. I want to execute this in an crontab without any extra script. l filename.file | grep 5th-tab | not eq 0 | rm Something like this?
1
vote
3answers
410 views

Why is shutil.rmtree() so slow?

I went to check how to remove a directory in Python, and was led to use shutil.rmtree(). It's speed surprised me, as compared to what I'd expect from a rm --recursive. Are there faster alternatives, ...
1
vote
3answers
410 views

Delete files with string found in file - linux cli

I am trying to delete erroneous emails based on finding the email address in the file via Linux CLI. I can get the files with find . | xargs grep -l email@domain.com But I cannot figure out how to ...
1
vote
2answers
441 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 ...
1
vote
2answers
498 views

ksh : Need to delete multiple directories quickly and reliably

I have many directories and need to delete them periodically with minimum time. Additionally for each directories delete status need to know i.e whether deleted successfully or not. I need to write on ...
1
vote
3answers
412 views

How to remove files and directories quickly

I am using a mac. When I use the "rm" command it can only remove files. The "rmdir" command only removes empty folders. If you have a directory with files and folders with files and folders in them ...
1
vote
1answer
651 views

Cron Job on Ubuntu Hardy Executing But Not Deleting Files As Expected

I have a bit of a pickle here and wonder if anyone can give me some pointers: I have a cron job which executes for a particular user daily and is supposed to sweep files in a particular directory. ...
1
vote
3answers
5k views

can't delete directory under linux due to broken files

kt@rails-ubuntu:~/rails/ledger/releases/20080820144914/.git/hooks$ ls -al ls: cannot access post-commit: No such file or directory ls: cannot access update: No such file or directory ls: cannot ...
0
votes
5answers
59 views

Deleting directories using single liner command

How to remove more than one directory using single command? Is it possible to do it in one liner? If yes, Please help on this. /osmf/mgmt/scheduler>ls -lrt total 22 drwx------ 2 root root ...
0
votes
1answer
72 views

removing *.o in makefile is not cleaning files

In makefile's clean i have written like rm -rf *.o. But its not cleaning files. If i have given rm -rf libdummy.o then its cleaning it properly. So if I use *, its not working as expected. clean: ...
0
votes
0answers
87 views

read rmkf file fujitsu netcobol

I have some files with 'fm' extension. when I open these files with a text editor, at first appears the text 'rmkf' with what I assume are rmkf file types. the information I have is that these files ...
0
votes
0answers
90 views

regaining accidentally deleted files [closed]

I did $ sudo python > dir="bla/python2.6/dist-packages" > file="bla1.egg" > import shutil > shutil.rmtree(dir) .......oops, meant to do shutil.rmtree(file) How do I get back the files? ...
0
votes
2answers
109 views

How to delete all files with certain suffix before file extension

I was just handed a directory with some 40,000+ images, and the directory includes three versions of every file, which makes it a bear to have to transfer between servers. I'm looking for a way using ...
0
votes
2answers
115 views

iphone : play rm files on iphone programmatically

i have a good experince with playing audio in general on iphone but i would like to have a way to play .RM files on iphone app .. i've tried the normal approach put it didn't give me any sound at all ...
0
votes
3answers
153 views

How to delete only directories and leave files untouched

I have hundreds of directories and files in one directory. What is the best way deleting only directories (no matter if the directories have anything in it or not, just delete them all) Currently I ...
0
votes
3answers
320 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 ...
0
votes
3answers
413 views

how to prevent “find” from dive deeper than current directory

I have many directory with lots of files inside them. I've just compressed that directory respectively become filename.tar.gz, someothername.tar.gz, etc. After compressing, I use this bash to delete ...
0
votes
1answer
335 views

How to convert .rm to .avi with ffmpeg in windows?

Anyone here knows the command?
0
votes
1answer
54 views

suporting .rm audio formats in iPhone

I need to design a application that supports the streaming of .rm audio from the server. But from the api docs of apple it seems that .rm is not supported in iPhone. Is there any other way to ...
0
votes
2answers
189 views

Unable to undo removal in Zsh

I run at path/test rm -r * The tutorial says that I can undo the change by If one of these fancyeditor commands changes your command line in a way you did not intend, you can undo changes ...
0
votes
3answers
146 views

Unable to find files which have been in the folder one minute in Mac's Zsh

I need to find files which have been in the folder Wastebasket exactly one minute. The files have been moved all over my computer to the folder. I run the following unsuccessfully find -atime n1m . ...
0
votes
2answers
123 views

Unable to remove a special named files in terminal

Some program makes ta my root directory dummy files such as -1 -2 -3 ... -n I run unsuccessfully rm -1 and too rm "-1" Terminal thinks that -1 is the option. How can you remove the files in ...
0
votes
1answer
311 views

Unable to use yes -command to all questions when removing

I get a long list of read-only protected files when I run rm -r trunk | yes I am trying to answer yes to all by one command. How can you answer yes to all questions?
-1
votes
0answers
45 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 ...
-1
votes
1answer
35 views

Is Flex supporting *.rm files?

So all is mentionned in the question : Can i run real player files with Flex ? thanks.
-3
votes
4answers
67 views

How to delete a folder with other files and folders inside with PHP [closed]

Possible Duplicate: A recursive remove directory function for PHP? With PHP I want to know the easiest way for delete a folder with files and folders inside. Thanks!