Compare commits
No commits in common. "master" and "tslaunch-1_0_0" have entirely different histories.
master
...
tslaunch-1
@ -1,7 +1,7 @@
|
|||||||
# $RCSfile: ReadMe.txt,v $
|
# $RCSfile: ReadMe.txt,v $
|
||||||
# $Revision: 1.3 $
|
# $Revision: 1.2 $
|
||||||
# $Name: $
|
# $Name: $
|
||||||
# $Date: 2002/05/22 10:18:23 $
|
# $Date: 2002/05/02 13:15:37 $
|
||||||
# $Author: giberta1 $
|
# $Author: giberta1 $
|
||||||
|
|
||||||
|
|
||||||
@ -17,14 +17,14 @@ Compilation:
|
|||||||
Installation:
|
Installation:
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
- You only need the TSLaunch.class and TSLaunch$Stream_Gobbler.class files.
|
- You only need the TSLauch.class and TSLaunch$Stream_Gobbler.class files.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Notes:
|
Notes:
|
||||||
------
|
------
|
||||||
|
|
||||||
- By default TimeStamp key is "TIME-STAMP".
|
- By default TimaStamp key is "TIME-STAMP".
|
||||||
|
|
||||||
- This software is under the GNU General Public License. See GNU-GPL.txt.
|
- This software is under the GNU General Public License. See GNU-GPL.txt.
|
||||||
|
|
||||||
|
@ -1,22 +1,13 @@
|
|||||||
# $RCSfile: ReleaseNotes.txt,v $
|
# $RCSfile: ReleaseNotes.txt,v $
|
||||||
# $Revision: 1.3 $
|
# $Revision: 1.2 $
|
||||||
# $Name: $
|
# $Name: $
|
||||||
# $Date: 2002/05/22 10:07:15 $
|
# $Date: 2002/05/02 13:15:37 $
|
||||||
# $Author: giberta1 $
|
# $Author: giberta1 $
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
|
||||||
TSLaunch V 1.0.1 - A. Gibert - 22/05/02
|
|
||||||
--------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
Fix Calendar.MONTH strange bug (!),
|
|
||||||
Add version, date and author print out.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
TSLaunch V 1.0.0 - A. Gibert - 02/05/02
|
TSLaunch V 1.0.0 - A. Gibert - 02/05/02
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
// $RCSfile: TSLaunch.java,v $
|
// $RCSfile: TSLaunch.java,v $
|
||||||
// $Revision: 1.4 $
|
// $Revision: 1.2 $
|
||||||
// $Name: $
|
// $Name: $
|
||||||
// $Date: 2002/05/22 10:09:57 $
|
// $Date: 2002/04/26 16:45:37 $
|
||||||
// $Author: giberta1 $
|
// $Author: giberta1 $
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -37,10 +37,6 @@ public class TSLaunch
|
|||||||
{
|
{
|
||||||
private String TS_Key = "TIME-STAMP";
|
private String TS_Key = "TIME-STAMP";
|
||||||
private String Sub_Args[];
|
private String Sub_Args[];
|
||||||
private String TSLaunch_Revision = "$Revision: 1.4 $";
|
|
||||||
private String TSLaunch_Tag = "$Name: $";
|
|
||||||
private String TSLaunch_Date = "$Date: 2002/05/22 10:09:57 $";
|
|
||||||
private String TSLaunch_Author = "$Author: giberta1 $";
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -226,7 +222,7 @@ public class TSLaunch
|
|||||||
nf3.setMinimumIntegerDigits(3);
|
nf3.setMinimumIntegerDigits(3);
|
||||||
nf3.setMaximumIntegerDigits(3);
|
nf3.setMaximumIntegerDigits(3);
|
||||||
|
|
||||||
return( "" + now.get( Calendar.YEAR) + nf2.format( now.get( Calendar.MONTH) + 1) + nf2.format( now.get( Calendar.DAY_OF_MONTH))
|
return( "" + now.get( Calendar.YEAR) + nf2.format( now.get( Calendar.MONTH)) + nf2.format( now.get( Calendar.DAY_OF_MONTH))
|
||||||
+ nf2.format( now.get( Calendar.HOUR_OF_DAY)) + nf2.format( now.get( Calendar.MINUTE)) + nf2.format( now.get( Calendar.SECOND))
|
+ nf2.format( now.get( Calendar.HOUR_OF_DAY)) + nf2.format( now.get( Calendar.MINUTE)) + nf2.format( now.get( Calendar.SECOND))
|
||||||
+ nf3.format( now.get( Calendar.MILLISECOND)));
|
+ nf3.format( now.get( Calendar.MILLISECOND)));
|
||||||
}
|
}
|
||||||
@ -297,8 +293,6 @@ public class TSLaunch
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
System.out.println("TSLaunch: " + TSLaunch_Tag + " / " + TSLaunch_Date + " / " + TSLaunch_Author);
|
|
||||||
|
|
||||||
if( args.length < 2)
|
if( args.length < 2)
|
||||||
{
|
{
|
||||||
System.out.println( "Usage: TSLaunch [-k \"TimeStamp_Key\"] Command_to_Run [...Args...]TimeStamp_Key[...Args...]");
|
System.out.println( "Usage: TSLaunch [-k \"TimeStamp_Key\"] Command_to_Run [...Args...]TimeStamp_Key[...Args...]");
|
||||||
|
Loading…
Reference in New Issue
Block a user