Re: [ITCENTER] copy file berdasarkan urutan tanggal pada dos

2006-10-20 Terurut Topik Rusdianto
terima kasih atas bantuan..
baik.. akan saya coba dulu :)

On 10/20/06, Andreas <[EMAIL PROTECTED]> wrote:
>
>
>
> >> pegimane caranye copy file yang ada di folder tertentu (misal:
> >> d:\folder1\)
> >> menuju folder lainnya (misal: d:\folder2\) berdasakan urutan tanggal
> >> tertentu (misal: <=18 okt 2006 baca: sebelum tanggal 18 okt 2006) pada
> >> DOS.
> >>
> >> rencananya saya mau bikin script untuk schedule file2 tersebut.
>
> Kalau pakai script bisa diakalin dengan menggunakan pkzip for DOS, selain
> berdasarkan tanggal juga bisa dipilih jenis file yang termasuk (include)
> atau yang tidak termasuk (exclude)
>
> contoh:
> untuk mendapatkan file sebelum tanggal 18 oktober 2006 pada directory
> d:\folder1\ gunakan perintah
> PKZIP FILETEMP D:\FOLDER1\*.* -T061018
>
> untuk mendapatkan file mulai tanggal 18 oktober 2006 dan sesudahnya pada
> directory d:\folder1\ parameter -T diganti menjadi -t
> PKZIP FILETEMP D:\FOLDER1\*.* -t061018
>
> keterangan : format tanggal dirubah menjadi yymmdd (TahunBulanTanggal)
> masing-masing 2 digit
>
> untuk mengcopy file ke directory d:\folder2\ gunakan perintah
> PKUNZIP FILETEMP D:\FOLDER2
>
> referensi parameter lebih lengkap bisa dibaca dengan cara menjalankan
> PKZIP dan PKUNZIP tanpa parameter apapun
>
> PKZIP VERSI 2.50 sudah support long file name bisa didownload secara
> gratis sebagai shareware/freeware
> saya coba masukkan kata kunci pk250dos.exe di google, diantaranya dapat
> url :
>
> http://www.filegate.net/pkware/pkdos/
> http://garbo.uwasa.fi/pc/arcers.html
> http://www.winsite.com/bin/Info?50031434
>
> Semoga membantu
>
> Andreas
>
>  
>



--


[Non-text portions of this message have been removed]




-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##

## Jaket ITCENTER tersedia di http://shop.itcenter.or.id 
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/ITCENTER/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



Re: [ITCENTER] copy file berdasarkan urutan tanggal pada dos (ralat)

2006-10-20 Terurut Topik Andreas


On Fri, 20 Oct 2006, Andreas wrote:
Maaf, setelah saya coba lagi ternyata format tanggal yang dipergunakan 
sesuai dengan format tanggal yang terkonfigurasi pada komputer. 
coba perintah date [Enter], saya coba di komputer saya menjadi mmddyy 
(BulanTanggalTahun),
dan ternyata bisa juga pakai format 4 digit tahun mmdd

> directory d:\folder1\ parameter -T diganti menjadi -t
> PKZIP FILETEMP D:\FOLDER1\*.* -t061018
>
> keterangan : format tanggal dirubah menjadi yymmdd (TahunBulanTanggal)
> masing-masing 2 digit

referensi lebih lengkap mengenai  format tanggal yang saya kutip dari 
MANUAL.TXT saya kutipkan sbb:

-t  Select files NEWER than or EQUAL to date
-T  Select files OLDER than date

This option will allow you to select files according to their date.
The date specifier is a eight-digit number conforming to the
following formats:

"American" style: mmdd
04011993 April 1st, 1993
10311989 October 31st, 1989

"European" style: ddmm
01041993 1 April, 1993
31101989 31 October, 1989

"Japanese" style: mmdd
19930401 1993 April 01
19891031 1989 October 31

PKZIP adapts itself to the date format for which your machine is
configured automatically.

All users within the United States use the first date format.
If you are outside the United States and are unsure of the
configuration of your computer, enter the DATE command at the DOS
prompt. This will show you the date format being used on your
computer.

The -t and -T options may be combined to specify a date range.

These examples all use the "American" date format (mmdd). To
compress all files created after or on November 4, 1992:

pkzip test.zip -t11041992

To compress all files created before January 10, 1991:

pkzip test.zip -T01101991

To compress all files created between October 1, 1992 and October 31,
1992:

pkzip test.zip -t10011992 -T10311992

If -t is used with no date, files with dates equal to the current date are
specified:
 pkzip today.zip -t

Andreas



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##

## Jaket ITCENTER tersedia di http://shop.itcenter.or.id 
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/ITCENTER/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



Re: [ITCENTER] copy file berdasarkan urutan tanggal pada dos

2006-10-20 Terurut Topik Andreas


>> pegimane caranye copy file yang ada di folder tertentu (misal:
>> d:\folder1\)
>> menuju folder lainnya (misal: d:\folder2\) berdasakan urutan tanggal
>> tertentu (misal: <=18 okt 2006 baca: sebelum tanggal 18 okt 2006) pada
>> DOS.
>>
>> rencananya saya mau bikin script untuk schedule file2 tersebut.

Kalau pakai script bisa diakalin dengan menggunakan pkzip for DOS, selain 
berdasarkan tanggal juga bisa dipilih jenis file yang termasuk (include) 
atau yang tidak termasuk (exclude)

contoh:
untuk mendapatkan file sebelum tanggal 18 oktober 2006 pada directory 
d:\folder1\ gunakan perintah
PKZIP FILETEMP D:\FOLDER1\*.* -T061018

untuk mendapatkan file mulai tanggal 18 oktober 2006 dan sesudahnya pada 
directory d:\folder1\ parameter -T diganti menjadi -t
PKZIP FILETEMP D:\FOLDER1\*.* -t061018

keterangan : format tanggal dirubah menjadi yymmdd (TahunBulanTanggal) 
masing-masing 2 digit

untuk mengcopy file ke directory d:\folder2\ gunakan perintah
PKUNZIP FILETEMP D:\FOLDER2

referensi parameter lebih lengkap bisa dibaca dengan cara menjalankan 
PKZIP dan PKUNZIP tanpa parameter apapun

PKZIP VERSI 2.50 sudah support long file name bisa didownload secara 
gratis sebagai shareware/freeware
saya coba masukkan kata kunci pk250dos.exe di google, diantaranya dapat 
url :

http://www.filegate.net/pkware/pkdos/
http://garbo.uwasa.fi/pc/arcers.html
http://www.winsite.com/bin/Info?50031434

Semoga membantu

Andreas



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##

## Jaket ITCENTER tersedia di http://shop.itcenter.or.id 
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/ITCENTER/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



Re: [ITCENTER] copy file berdasarkan urutan tanggal pada dos

2006-10-19 Terurut Topik Mirza Khadnezar
ga bisa :( setau saya ***cmiiw
tapi ada satu lagi ( maap saya lupa namanya ) :( ( maap )
itu bisa


On 10/19/06, Rusdianto <[EMAIL PROTECTED]> wrote:
>
> di nc, bisa dibikin command scriptnya g ? ander DOS (batch file)
> caranya ?
>
> nd:
> belom pernah pake nc
>
> On 10/19/06, Mirza Khadnezar <[EMAIL PROTECTED] >
> wrote:
> >
> > yup norton commander
> >
> > [Non-text portions of this message have been removed]
> >
> >
> >
>
> --
> ''~``
> ( o o )
> +--.oooO--(_)--Oooo.--+
> | |
> | http://www.rusdi.org |
> | Email:[EMAIL PROTECTED]  |
> | Yahoo id:nice_cisco |
> | |
> | .oooO |
> | ( ) Oooo. |
> +-\ (( )+
> \_) ) /
> (_/
>
> [Non-text portions of this message have been removed]
>
> 
>


[Non-text portions of this message have been removed]




-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##

## Jaket ITCENTER tersedia di http://shop.itcenter.or.id 
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/ITCENTER/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



Re: [ITCENTER] copy file berdasarkan urutan tanggal pada dos

2006-10-19 Terurut Topik Mirza Khadnezar
ga bisa :( setau saya ***cmiiw
tapi ada satu lagi ( maap saya lupa namanya ) :( ( maap )
itu bisa


On 10/19/06, Rusdianto <[EMAIL PROTECTED]> wrote:
>
> di nc, bisa dibikin command scriptnya g ? ander DOS (batch file)
> caranya ?
>
> nd:
> belom pernah pake nc
>
> On 10/19/06, Mirza Khadnezar <[EMAIL PROTECTED] >
> wrote:
> >
> > yup norton commander
> >
> > [Non-text portions of this message have been removed]
> >
> >
> >
>
> --
> ''~``
> ( o o )
> +--.oooO--(_)--Oooo.--+
> | |
> | http://www.rusdi.org |
> | Email:[EMAIL PROTECTED]  |
> | Yahoo id:nice_cisco |
> | |
> | .oooO |
> | ( ) Oooo. |
> +-\ (( )+
> \_) ) /
> (_/
>
> [Non-text portions of this message have been removed]
>
> 
>


[Non-text portions of this message have been removed]




-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##

## Jaket ITCENTER tersedia di http://shop.itcenter.or.id 
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/ITCENTER/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



Re: [ITCENTER] copy file berdasarkan urutan tanggal pada dos

2006-10-19 Terurut Topik Rusdianto
di nc, bisa dibikin command scriptnya g ? ander DOS (batch file)
caranya ?

nd:
belom pernah pake nc

On 10/19/06, Mirza Khadnezar <[EMAIL PROTECTED]> wrote:
>
>   yup norton commander
>
> [Non-text portions of this message have been removed]
>
>  
>



-- 
 ''~``
( o o )
+--.oooO--(_)--Oooo.--+
|   |
|   http://www.rusdi.org   |
|   Email:[EMAIL PROTECTED]  |
|   Yahoo id:nice_cisco|
|   |
|.oooO  |
|(   )   Oooo.  |
+-\ ((   )+
   \_)) /
 (_/


[Non-text portions of this message have been removed]




-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##

## Jaket ITCENTER tersedia di http://shop.itcenter.or.id 
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/ITCENTER/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



Re: [ITCENTER] copy file berdasarkan urutan tanggal pada dos

2006-10-18 Terurut Topik Mirza Khadnezar
yup norton commander


[Non-text portions of this message have been removed]




-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##

## Jaket ITCENTER tersedia di http://shop.itcenter.or.id 
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/ITCENTER/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



Re: [ITCENTER] copy file berdasarkan urutan tanggal pada dos

2006-10-18 Terurut Topik Rusdianto
NC apa pak ?
apakah norton comander ?
caranya ?

thanks
rusdi

On 10/19/06, Mirza Khadnezar <[EMAIL PROTECTED]> wrote:
>
>   On 10/18/06, Rusdianto <[EMAIL PROTECTED] >
> wrote:
> >
> > hi sesepuh IT,
> >
> > numpang tanya neh :)
> > pegimane caranye copy file yang ada di folder tertentu (misal:
> > d:\folder1\)
> > menuju folder lainnya (misal: d:\folder2\) berdasakan urutan tanggal
> > tertentu (misal: <=18 okt 2006 baca: sebelum tanggal 18 okt 2006) pada
> > DOS.
> >
> > rencananya saya mau bikin script untuk schedule file2 tersebut.
> >
> > tulung dunk...
> > bulan ramadhan neh...
> > pahalanya banyak loh :)
> >
> > thanks
> > rusdi
> > --- newbie doang ---
> > <[EMAIL PROTECTED]
> ?subject=>
> > Recent Activity
> >
> > - 149
> > New Members<
> http://groups.yahoo.com/group/ITCENTER/members;_ylc=X3oDMTJmMDZ0MnJuBF9TAzk3MzU5NzE0BGdycElkAzEzNjgwODcEZ3Jwc3BJZAMxNzA1MDQzNjk1BHNlYwN2dGwEc2xrA3ZtYnJzBHN0aW1lAzExNjExNTE3NzA-
> >
> >
> > Visit Your Group
> > <
> http://groups.yahoo.com/group/ITCENTER;_ylc=X3oDMTJlc3I0aDJsBF9TAzk3MzU5NzE0BGdycElkAzEzNjgwODcEZ3Jwc3BJZAMxNzA1MDQzNjk1BHNlYwN2dGwEc2xrA3ZnaHAEc3RpbWUDMTE2MTE1MTc3MA--
> >
> > New Message Search
> >
> > Find the message you want faster. Visit your group to try out the
> improved
> > message search.
> >
> > Share feedback on the new changes to Groups 
> > .
> >
> >
> >
> kayaknya ga bisa deh
> harus manual
> tapi biar ga cape
> pake aja utilities spt NC
>
> [Non-text portions of this message have been removed]
>
>  
>



--


[Non-text portions of this message have been removed]




-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##

## Jaket ITCENTER tersedia di http://shop.itcenter.or.id 
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/ITCENTER/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



Re: [ITCENTER] copy file berdasarkan urutan tanggal pada dos

2006-10-18 Terurut Topik Mirza Khadnezar
On 10/18/06, Rusdianto <[EMAIL PROTECTED]> wrote:
>
> hi sesepuh IT,
>
> numpang tanya neh :)
> pegimane caranye copy file yang ada di folder tertentu (misal:
> d:\folder1\)
> menuju folder lainnya (misal: d:\folder2\) berdasakan urutan tanggal
> tertentu (misal: <=18 okt 2006 baca: sebelum tanggal 18 okt 2006) pada
> DOS.
>
> rencananya saya mau bikin script untuk schedule file2 tersebut.
>
> tulung dunk...
> bulan ramadhan neh...
> pahalanya banyak loh :)
>
> thanks
> rusdi
> --- newbie doang ---
>  <[EMAIL PROTECTED]>
> Recent Activity
>
>-  149
>New 
> Members
>
> Visit Your Group
> 
> New Message Search
>
> Find the message you want faster. Visit your group to try out the improved
> message search.
>
> Share feedback on the new changes to Groups 
> .
>
> 
>
kayaknya ga bisa deh
harus manual
tapi biar ga cape
pake aja utilities spt NC


[Non-text portions of this message have been removed]




-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##

## Jaket ITCENTER tersedia di http://shop.itcenter.or.id 
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/ITCENTER/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/