Displaying 5 results from an estimated 5 matches for "cmpfile".
Did you mean:
tmpfile
2003 Oct 16
0
[alert] DST change and date comparisons
...ript that will change the
timestamps of files in a list on standard-input. Whether
you use a positive or negative shift will depend on which
end you decide to adjust. I include here a script to do
exactly that.
This is an example of how to use the script:
touch -d '01:00 13-apr-03' /tmp/cmpfile
find . -type f ! -newer /tmp/cmpfile | shifttime.pl 3600
------ shifttime.pl -------
#!/usr/bin/perl
$offset = shift;
$offset += 0;
!$offset and die "must specify offset";
while (<STDIN>)
{
chomp;
-w or next;
$oldtime = (stat $_)[9];
$oldtime or next;
$newtime = $oldtime...
2019 Apr 26
0
R 3.6.0 is released
...5b6c3ad5fc2bf57509 R-3/R-3.6.0.tar.gz
This is the relevant part of the NEWS file
CHANGES IN R 3.6.0:
SIGNIFICANT USER-VISIBLE CHANGES:
* Serialization format version 3 becomes the default for
serialization and saving of the workspace (save(), serialize(),
saveRDS(), compiler::cmpfile()). Serialized data in format 3
cannot be read by versions of R prior to version 3.5.0.
Serialization format version 2 is still supported and can be
selected by version = 2 in the save/serialization functions. The
default can be changed back for the whole R session by sett...
2019 Apr 26
0
R 3.6.0 is released
...5b6c3ad5fc2bf57509 R-3/R-3.6.0.tar.gz
This is the relevant part of the NEWS file
CHANGES IN R 3.6.0:
SIGNIFICANT USER-VISIBLE CHANGES:
* Serialization format version 3 becomes the default for
serialization and saving of the workspace (save(), serialize(),
saveRDS(), compiler::cmpfile()). Serialized data in format 3
cannot be read by versions of R prior to version 3.5.0.
Serialization format version 2 is still supported and can be
selected by version = 2 in the save/serialization functions. The
default can be changed back for the whole R session by sett...
2019 Apr 26
0
R 3.6.0 is released
...5b6c3ad5fc2bf57509 R-3/R-3.6.0.tar.gz
This is the relevant part of the NEWS file
CHANGES IN R 3.6.0:
SIGNIFICANT USER-VISIBLE CHANGES:
* Serialization format version 3 becomes the default for
serialization and saving of the workspace (save(), serialize(),
saveRDS(), compiler::cmpfile()). Serialized data in format 3
cannot be read by versions of R prior to version 3.5.0.
Serialization format version 2 is still supported and can be
selected by version = 2 in the save/serialization functions. The
default can be changed back for the whole R session by sett...
2012 Mar 25
2
avoiding for loops
I have data that looks like this:
> df1
group id
1 red A
2 red B
3 red C
4 blue D
5 blue E
6 blue F
I want a list of the groups containing vectors with the ids. I am
avoiding subset(), as it is
only recommended for interactive use. Here's what I have so far:
df1 <- data.frame(group=c("red", "red", "red", "blue",