Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[OT] Shell Script: Dateien verschieben [solved]
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German) Diskussionsforum
View previous topic :: View next topic  
Author Message
dot
Guru
Guru


Joined: 05 May 2003
Posts: 335
Location: Germany

PostPosted: Tue Mar 30, 2004 11:49 am    Post subject: [OT] Shell Script: Dateien verschieben [solved] Reply with quote

Hi,

ich brauch ein Shellscript, um jede name.txt.backup nach name.txt zu verschieben,
das hab ich schon:
Code:
#!/bin/sh
for i in `find -name "*.php.backup"`
do
  mv $i # wie mach ich jetzt das .backup weg??
done



Grüße

Flo


Last edited by dot on Tue Mar 30, 2004 7:39 pm; edited 1 time in total
Back to top
View user's profile Send private message
Carlo
Developer
Developer


Joined: 12 Aug 2002
Posts: 3356

PostPosted: Tue Mar 30, 2004 12:20 pm    Post subject: Reply with quote

z.B. so: ${i/.backup//}

Dein $i sieht übrigens nicht gut aus, wenn der Pfad Leerzeichen enthält.


Carlo
_________________
Please make sure that you have searched for an answer to a question after reading all the relevant docs.


Last edited by Carlo on Tue Mar 30, 2004 12:22 pm; edited 1 time in total
Back to top
View user's profile Send private message
eLWedgo
n00b
n00b


Joined: 18 Nov 2002
Posts: 32

PostPosted: Tue Mar 30, 2004 12:21 pm    Post subject: Reply with quote

Hi,

Code:

mv $i `echo $i | sed "s/\.backup$//g"`

müsste es tun. Ansonsten kann ich http://www.tldp.org/LDP/abs/html/ empfehlen :-)

Viele Grüße,
Peter
Back to top
View user's profile Send private message
dot
Guru
Guru


Joined: 05 May 2003
Posts: 335
Location: Germany

PostPosted: Tue Mar 30, 2004 12:22 pm    Post subject: Reply with quote

you made my day :D :D
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Deutsches Forum (German) Diskussionsforum All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum