rm is a basic UNIX command used to remove files, directories, and other items from the filesystem.
0
votes
1answer
25 views
What happens when you rm a file?
I'm curious about what happens at a deeper level when you rm a file on a UNIX-like system, especially as related to how it's possible to restore deleted files.
Could someone describe how rm works at ...
0
votes
1answer
63 views
Linux how to use rm and exclude switch
Hi guys I was wondering how we can use linux rm command with --exclude switch?
For example like grep has exclude function when searching over the files.
0
votes
1answer
68 views
user www-data cannot remove file
In php I do the following:
exec('remove_file.sh', $output, $return);
where remove_file.sh is the following script:
#!/bin/sh
rm -f /tmp/test.pdf
I verified that this script is run by www-data ...
-1
votes
0answers
33 views
UNIX - creating a recursive function similar to rm -r
What I want to do is move a directory and all of it's files to a deleted bin that I have created.
Here's my code
recursive_func()
29 {
30 inode=`ls -i $file | cut -d' ' -f1`
32 ...
0
votes
1answer
36 views
UNIX - Moving a deleted file back to it's original directory
All I want to do is move a file from my created recycle bin to it's own original path.
My code is as follows:
#!/bin/bash
restore ()
{
base=`basename $restore_file | cut -d"_" -f1`
echo "Your ...
0
votes
1answer
15 views
Is it possible to implement multiple foldernames in an rm -rf query in osc Terminal
I am trying to delete certain subfolders in a directory.
When using the following promt:
cd to root of directory Y
then (assuming the folder name is "X",):
find . -name X -exec rm -rf {} \;
Is ...
0
votes
2answers
19 views
undelete file from ming
I'm writting a php app on a windows 7 machine and I'm using git command line utility from mingw32. The problem is that I just remived a very important file of my project by mistake.
This is the ...
0
votes
3answers
52 views
rm and Garbage Collection Wrapper
How would I make a function named rm2 that takes in an unknown number of objects, removes them, and then runs the gc()?
I have tried a could things but cannot figure it out.
rm2 <- function(...){
...
0
votes
3answers
151 views
Copying from mount share drive to local folder through script
This is my first time trying to work with Linux Scripts so this may be something obvious.
Here is what I am trying to do:
Remove all contents from local folder - rm /home/user/Documents/Exercise/
...
1
vote
1answer
51 views
Session directory growing despite deleting files
One of my servers has clearly had a buggy session garbage collection routine. The result is that the session dir contains millions on files. Deleting these will take weeks, but it seems like the ...
-1
votes
4answers
116 views
Disable terminal commands [closed]
I want to disable the use of rm except in certain circumstances. I wrote a function called remove in a .sh file and it goes though certain checks that I wanted to impose before actually calling rm. ...
2
votes
3answers
69 views
How to prevent user from deleting a file if I that is being used by JVM
I have a piece of JAVA code which reads a few files and keeps them loaded into memory for sometime. The file handles are preserved after reading. My problem here is that I want to restrict user from ...
0
votes
3answers
97 views
I want to get a tip of rm command filter by using bash script
Some weeks ago, a senior team member removed an important oracle database file(.dbf) unexpectedly. Fortunately, We could restore the system by using back-up files which was saved some days ago.
After ...
1
vote
2answers
45 views
how to process linux find command didn't has result
find . -name "*.pyc" -print0| xargs -0 rm
i use this command delete python compiled file but if current directory didn't have any *.pyc
file this cmd will not work
print out the error with rm ...
0
votes
3answers
79 views
Delete a file in linux that contains double dash [duplicate]
Possible Duplicate:
Unable to remove a special named files in terminal
I feel silly asking, but how can I delete a file in linux named --preserve-permissions?
I tried:
rm ...
0
votes
2answers
490 views
Unix delete all folders in a directory with a specific name
Hi I've got lots of folders with the name "@eaDir" all across one of my disks and I'd like to search through, find all of them and delete them and their contents.
I know this is probably a ...
3
votes
1answer
53 views
What difference does the backslash make in the below syntax to remove a UNIX directory having contents?
I need to delete a directory that contains several sub-directories and files. After googling and looking at the man pages of rmdir and rm, I have these two alternatives:
$ rm -rf <folder_name> ...
1
vote
3answers
150 views
rm cannot delete files starting with --
I have a script that creates files and sometimes they end up having 2 dashes at the beginning, is there any way to delete them mv doesn't work either
Here is the error I am getting
$ ls
...
0
votes
2answers
58 views
How can Mono remove files matching a regex
As part of a project, the Mono program has to write a series of images to a movie. Therefore the images are first cached in the /tmp/ folder/ since their is a possibility that their are still images ...
0
votes
3answers
135 views
How to fix rm -rf /* [closed]
My brother used rm -rf /* . Now he is at grub rescue and cant seem to make anything work. Just about every thing I try fails. Any one know what should be done?
0
votes
3answers
73 views
Glob-like brace Wildcards in Bash
Lets say I've a directory /etc/php5/conf.d/, with the following hypothetical files in it:
mysql.ini
mysqli.ini
20-mysql.ini
20-mysqli.ini
20-pdo_mysql.ini
I would like to delete all these files ...
0
votes
1answer
309 views
system command rm not working in expect program
I have a code (1) that is supposed to execute test in another code (its a pseudo-bash). This code (1) is wrote using the "expect" for the 'user simulation'.
The problem is when this code (1) execute ...
0
votes
2answers
70 views
Deleting strange directories in unix
I am having some issues deleting some folders in unix.
Directory 1:
?0\'
Directory 2:
-1\'
I would like to delete them recursively so something like
rm -rf -1\'
Not sure on how to escape the ...
2
votes
3answers
157 views
How to remove folders with a certain name
How to remove folders with a certain name which are nested deep in a folder heirarchy
e.g. The following are under a certain folder and I would like to remove all folders "a", what Linux command ...
0
votes
1answer
373 views
Cron job to delete files in folder after 30 minutes [closed]
What is a cron job line of code that deletes files in a certain folder that are older than 30min?
0
votes
1answer
161 views
how to delete folders but not files in a folder by cmd
How to delete folders but not files in a folder by cmd?
Such as, there is a direcory:
c:\image\1.png
c:\image\2.png
c:\image\3.png
c:\image\*.png
c:\image\folder1\*.png
c:\image\folder2\*.png
....
...
-3
votes
1answer
112 views
how to commit the files that i delete using rm rather than git rm?
git add seems not works for these deleted files, so how to commit the changes?
$ git status
# On branch master
# Changes not staged for commit:
# (use "git add/rm <file>..." to update what ...
-1
votes
2answers
341 views
Delete all files in a directory, except those listed matching specific criteria
I need to automate a clean-up of a Linux based FTP server that only holds backup files.
In our "\var\DATA" directory is a collection of directories. Any directory here used for backup begins with ...
0
votes
2answers
255 views
Mac OS X restore files deleted by git rm
i just messed up big. The way it happened is so emberassing that I won't write it down :)
So here's my problem:
Github Repop deleted
Local repo files delete by git rm -r
Local repo new initalized
...
0
votes
2answers
265 views
recovering the deleted python script file
How can we recover the deleted python script file(deleted using rm), say lostfile.py in debian linux box?
The file system of the linux box is jfs
1
vote
3answers
420 views
how to remove all files form a directory except a few ones?
i have a directory structure something like:
/var/www/html/pictures/media0/01/test_01.jpg
/var/www/html/pictures/media0/01/test_02.jpg
/var/www/html/pictures/media0/01/test_03.jpg
...
1
vote
3answers
2k views
Bash: What's the difference between “rm -d” and “rm -R”?
Questions
What is the difference between the rm -d and rm -R commands in Bash?
Which one should I use?
Details
According to the man page for the rm command:
rm -d attempts to remove directories ...
0
votes
2answers
649 views
Can't rm -r directory using python subprocess.call
Welp, I need to remove some huge temporary directories from python and I can't seem to use rm -r. I'm working thought a big dataset (on s3) I don't have the disc space to leave them around.
The usual ...
5
votes
1answer
227 views
Using rm * (wildcard) in envoy: No such file or directory
I'm using Python and Envoy. I need to delete all files in a directory. Apart from some files, the directory is empty. In a terminal this would be:
rm /tmp/my_silly_directory/*
Common sense dictates ...
2
votes
2answers
1k views
In linux shell, How to cp/rm files by time?
In linux shell, When I run
ls -al -t
that show the time of files.
How to cp/rm files by time? just like copy all the files that created today or yesterday. Thanks a lot.
1
vote
1answer
130 views
Why use git rm instead of rm'ing files, directories, etc. and then using git add -u?
I'm having trouble getting git rm to delete a now superfluous directory and it's files from a project. This made me wonder why git rm is the accepted practice when deleting tracked files instead of rm ...
1
vote
2answers
101 views
Need to delete a file -ggdb
So I kinda messed up an managed to create a file named -ggdb in my home directory on a Debian distribution. I have tried surrounding it with " to make it a string literal (like so: rm "-ggdb") but i ...
0
votes
2answers
802 views
Difference between 'find -delete' and 'rm -rf'?
I want to delete files from a specific directory recursively. So, i have used
find . -wholename "*.txt" -delete
We can also delete the files using
rm -rf *.txt
What is the difference ...
-1
votes
4answers
339 views
How to delete files that are not mp3? [closed]
I have a mp3 Player. I have connected it to my PC which has Ubuntu as an OS.
I want to delete all the files that are not .mp3.
I know that for deleting them the command is rm *.mp3, but what's the ...
0
votes
2answers
294 views
how to delete all files with a path pattern
I have a backup location, which uses hardlinks to store existing or changed files. The location of these backups mimick the linux file system with a date part in it.
For example I have files
...
4
votes
1answer
1k views
Command line: piping find results to rm
I'm trying to work out a command which deletes sql files older than 15 days.
The find part is working but not the rm.
rm -f | find -L /usr/www2/bar/htdocs/foo/rsync/httpdocs/db_backups -type f \( ...
0
votes
1answer
262 views
How to delete all exe in a pendrive in linux
There are a lot of exe files in my pen-drive (reside in different directories).
How can I delete all the files using Linux command?
0
votes
4answers
3k views
cronjob to remove files older than 99 days
I have to make a cronjob to remove files older than 99 days in a particular directory but I'm not sure the file names were made by trustworthy Linux users. I must expect special characters, spaces, ...
2
votes
1answer
573 views
Using find to delete all files with a given name except the one with a given extension
I want to delete all files in a directory with a given name, except for one with a given extension. I.e. we have a directory with:
foo.txt foo.exe foo.jpg foo.png foo.something foo.somethingelse ...
3
votes
3answers
420 views
Calling rm from subprocess using wildcards does not remove the files
I'm trying to build a function that will remove all the files that start with 'prepend' from the root of my project. Here's what I have so far
def cleanup(prepend):
prepend = str(prepend)
...
0
votes
4answers
676 views
Anyone ever actually tried 'rm -rf /*' in Linux? [closed]
Anyone ever actually tried rm -rf /*, or something similar, in Linux? You always hear people joke about it, but I'm curious if it actually executes, and if so, what kind of damage it actually does ...
5
votes
3answers
292 views
Unix command deleted every directory even though not specified
I am very new to the unix. I ran the following command.
ls -l | xargs rm -rf bark.*
and above command removed every directory in the folder.
Can any one explained me why ?
0
votes
1answer
123 views
rm error when installing Pow: “Permission denied”
I wanted to install Pow. Running curl get.pow.cx | sh in my home directory yields :
*** Installing Pow 0.3.2...
rm: Current: Permission denied
Adding sudo in front didn't change anything.
Hope ...
0
votes
1answer
288 views
cannot delete (rm) a file in c program but can in shell
My C program (on Linux) needs to delete a file, say, /home/me/myfile, here is how I do it in my program
...
system ("rm -f /home/me/myfile");
...
When running this program, I got a message saying ...
1
vote
2answers
449 views
Powershell Command: rm -rf
I did a bit of research and I'm still not sure exactly what it does. I know rm is remove item, but I couldn't find any documentation on -rf. Whenever I typed help -rf it printed the entire list of ...