python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
I have problems with permissions using xargs with rm
I have remove.txt file containing a.txt and b.txt as text. All files are in the same folder, I set chmod 777 for all those files. Now, when I run sudo cat remove.txt | xargs rm I get Permission denied...
Rusvi Kaos
Votes: 0
Answers: 1
How to drop object accoring the object's name
There are data.frame in R , I want to drop all of them whice name like 'table_*'.
rm(c('table_a','table_j','table_w','table_z')) seems can't work. Anyone can help ? Thanks
table_a <- data.frame(cat...
anderwyang
Votes: 0
Answers: 1
nftw: remove the directory content without removing the top dir itself
I developed a function to recursively remove a directory with nftw():
#include <errno.h>
#include <string.h>
#include <ftw.h> /* for nftw() */
int unlink_cb(
const char *fpa...
MOHAMED
Votes: 0
Answers: 1
How to remove given object from R environment
In R ,this are object_a/object_b, i want to remove them from R environment ,
but rm(c('object_a','object_b')) can't work. Anyone can help? Thanks!
object_a <- c(1:3)
object_b <- c(1:6)
rm(c('obj...
anderwyang
Votes: 0
Answers: 2