Search found 3 matches

by svendaems
September 13th, 2012, 7:35 am
Forum: Post-Processing Scripts
Topic: Renaming script after downloading
Replies: 4
Views: 3320

Re: Renaming script after downloading

super, it works, thank you very much!
by svendaems
September 12th, 2012, 2:55 pm
Forum: Post-Processing Scripts
Topic: Renaming script after downloading
Replies: 4
Views: 3320

Re: Renaming script after downloading

Yes, I'm quite new to it ;-) But I want to rename the complete folder where it was downloaded in, not only the file. I've added the quotes but still the same error #!/bin/sh mv -f "$1" "date +%Y-%m-%d %H:%M:%S $1" mv: can't rename '/volume1/Downloads/test': No such file or direct...
by svendaems
September 12th, 2012, 1:13 pm
Forum: Post-Processing Scripts
Topic: Renaming script after downloading
Replies: 4
Views: 3320

Renaming script after downloading

Hello I'm trying to rename the folders that I've downloaded by adding a date-time stamp. I've following script #!/bin/sh mv -f $1 "date +%Y-%m-%d %H:%M:%S $1" When I download a test file, I get following error Exit(1) mv: can’t rename ’/volume1/Downloads/test’: No such file or directory An...