Changeset 69490 in vbox
- Timestamp:
- Oct 28, 2017 2:03:57 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 118829
- Location:
- trunk/tools/bin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/bin/ose-tarball.sh
r69365 r69490 1 1 #!/bin/sh 2 # $Id$ 3 ## @file 2 4 # Use this script in conjunction with snapshot-ose.sh 5 # 6 7 # 8 # Copyright (C) 2006-2017 Oracle Corporation 9 # 10 # This file is part of VirtualBox Open Source Edition (OSE), as 11 # available from http://www.virtualbox.org. This file is free software; 12 # you can redistribute it and/or modify it under the terms of the GNU 13 # General Public License (GPL) as published by the Free Software 14 # Foundation, in version 2 as it comes in the "COPYING" file of the 15 # VirtualBox OSE distribution. VirtualBox OSE is distributed in the 16 # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 17 # 3 18 4 19 vboxdir=`pwd` -
trunk/tools/bin/vboxlogabstime.pl
r53918 r69490 1 1 #!/usr/bin/perl 2 # $Id$ 3 ## @file 4 # ??? 5 # 6 7 # 8 # Copyright (C) 2006-2017 Oracle Corporation 9 # 10 # This file is part of VirtualBox Open Source Edition (OSE), as 11 # available from http://www.virtualbox.org. This file is free software; 12 # you can redistribute it and/or modify it under the terms of the GNU 13 # General Public License (GPL) as published by the Free Software 14 # Foundation, in version 2 as it comes in the "COPYING" file of the 15 # VirtualBox OSE distribution. VirtualBox OSE is distributed in the 16 # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 17 # 18 2 19 use strict; 3 20 use warnings; … … 11 28 my ($dummy, $start); 12 29 my $continuation = 0; 13 while (<LOG>) 30 while (<LOG>) 14 31 { 15 32 chomp; … … 41 58 # logging as documented by the timestamp. Usually a couple milliseconds. 42 59 if ($continuation) { $firstrel = 0; } 43 while (<LOG>) 60 while (<LOG>) 44 61 { 45 62 my ($time,$msg) = split('(?<=\s)(.*)');
Note:
See TracChangeset
for help on using the changeset viewer.