Linux Command to Remember # 2
Problem:
[root@popoy new]# rm -rf *
-bash: /bin/rm: Argument list too long
Solution:
[root@popoy new]# ls | xargs rm
[root@popoy new]# ll
total 0
[root@popoy new]# rm -rf *
-bash: /bin/rm: Argument list too long
Solution:
[root@popoy new]# ls | xargs rm
[root@popoy new]# ll
total 0
0 Comments:
Post a Comment
<< Home