Valeria
|
2008-08-24
, 04:22
|
Posts: 65 |
Thanked: 23 times |
Joined on Jul 2008
@ Argentina
|
#11
|
|
2008-08-24
, 05:12
|
Posts: 3,428 |
Thanked: 2,856 times |
Joined on Jul 2008
|
#12
|
rm -f my\ file.mp3
The Following User Says Thank You to fatalsaint For This Useful Post: | ||
|
2008-08-24
, 05:30
|
|
Posts: 36 |
Thanked: 2 times |
Joined on Aug 2008
@ California
|
#13
|
|
2008-08-24
, 12:57
|
|
Posts: 868 |
Thanked: 474 times |
Joined on Oct 2007
@ Capital District, NY, USA
|
#14
|
|
2008-08-24
, 19:14
|
|
Posts: 299 |
Thanked: 168 times |
Joined on Jun 2006
@ Wales UK
|
#15
|
~/trial $ ls -a . .. ._my doc ._mydoc mydoc
~/trial $ for f in ._* > do > rm "$f" > done
~/trial $ ls -a . .. mydoc
The Following User Says Thank You to rcull For This Useful Post: | ||
|
2008-08-24
, 19:50
|
|
Posts: 868 |
Thanked: 474 times |
Joined on Oct 2007
@ Capital District, NY, USA
|
#16
|
for file in ._*; do rm "$file";done
|
2008-08-25
, 19:32
|
|
Posts: 299 |
Thanked: 168 times |
Joined on Jun 2006
@ Wales UK
|
#17
|
|
2008-08-26
, 11:59
|
|
Posts: 2,669 |
Thanked: 2,555 times |
Joined on Apr 2007
@ Halifax, Nova Scotia, Canada
|
#18
|
Just for future note to people.. to delete a file with a space in command line you need to use an escape character (\).. so
Also.. if you press tab after typing part of a file name; if it's the only file in the directory that starts that way it will auto-complete the filename for you.. with the escape's where they are needed. So typing "my" and press tab.. will produce the above result.Code:rm -f my\ file.mp3
|
2008-08-26
, 12:25
|
|
Posts: 739 |
Thanked: 159 times |
Joined on Sep 2007
@ Germany - Munich
|
#19
|
Who is up for editing the busybox's debconfig and adding some options in? I took a look last time using make menuconfig after apt-get source busybox from nokia's sdk repo and it has a lot of find related options disabled.