Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > 7ebd25ac536d248d499a3ce2acda963a > files > 2606

Macaulay2-1.3.1-8.fc15.i686.rpm

-- -*- M2-comint -*- {* hash: -2135127930 *}

i1 : src = temporaryFileName()

o1 = /tmp/M2-12869-1

i2 : dst = temporaryFileName()

o2 = /tmp/M2-12869-2

i3 : src << "hi there" << close

o3 = /tmp/M2-12869-1

o3 : File

i4 : copyFile(src,dst,Verbose=>true)
--copying: /tmp/M2-12869-1 -> /tmp/M2-12869-2

i5 : get dst

o5 = hi there

i6 : copyFile(src,dst,Verbose=>true,UpdateOnly => true)
--skipping: /tmp/M2-12869-1 not newer than /tmp/M2-12869-2

i7 : src << "ho there" << close

o7 = /tmp/M2-12869-1

o7 : File

i8 : copyFile(src,dst,Verbose=>true,UpdateOnly => true)
--skipping: /tmp/M2-12869-1 not newer than /tmp/M2-12869-2

i9 : get dst

o9 = hi there

i10 : removeFile src

i11 : removeFile dst

i12 :