[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Bug-apl] My script you may use (tailor before please)
From: |
Christian Robert |
Subject: |
[Bug-apl] My script you may use (tailor before please) |
Date: |
Thu, 23 Feb 2017 20:04:13 -0500 |
User-agent: |
Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.7.1 |
My script you may use (tailor before using it please) to update all your
workspaces
especially when the "Archive SVN change" or when you add/update some of your
common functions
and want to copy the updated ones in each of your workspaces.
should be installed as executable just below/or/above (depending of you point
of view) your workspaces/ directory.
Mine is right in my $HOME.
make a backup of all your workspaces before first use.
Read the script and try to understand it before using it.
I called it "Load+Save" on my workstation.
Xtian.
address@hidden:/home/xtian] $ cat Load+Save
#!/bin/bash
#
# This script must sit right into your $HOME directory and
# assume that your workspaces/ directory is there too.
#
# Useful when the archive svn number is increased or
# when you want all your workspaces to be updated because
# you modified your "Util" or "LIB 5 FILE_IO" has been changed
#
# do: chmod u+x ./Load+Save to be able to call it by issuing: ./Load+Save
#
#
# Keep only one of those two lines UN-commented
#
# function APL { cat -; } # For debugging purpose,
commands will show on console.
function APL { /usr/local/bin/apl --script; } # When debugging is done,
commands will be interpreted.
cd $(dirname $0)
{
for workspace in $(ls workspaces/*.xml | tr '/' ' ' | awk '{print $2;}')
do
ws=${workspace%.xml}
echo "\"Processing: $workspace as $ws ...\""
echo ")load ${ws}" # Beware that )load will
trigger ⎕LX if it is set.
echo ")reset" # Make sure no pending
functions
#
# Here you can tailor what is done for each specific Workspace
#
case "${ws}" in
(Util) # Do nothing special for my
"Util" Workspace.
;;
(*) # All other Workspaces not
mentioned above should be updated
echo ")Copy Util edit Randomize df" # Copy some of yours Util's
into the Workspace
echo ")Copy 5 FILE_IO FIO" # Some other things you may
want in every Workspace
;;
esac
echo ")save" # Save the final Workspace
echo "'-----------------------------------------'"
done
echo ")off"
} | APL
Sample usage:
-------------
address@hidden:/home/xtian] $ ./Load+Save
Processing: A.xml as A ...
SAVED 2017-02-23 19:59:54 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) A
-----------------------------------------
Processing: CONTINUE.xml as CONTINUE ...
SAVED 2017-02-23 19:59:54 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) CONTINUE
-----------------------------------------
Processing: Const.xml as Const ...
SAVED 2017-02-23 19:59:54 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) Const
-----------------------------------------
Processing: Convert.xml as Convert ...
SAVED 2017-02-23 19:59:54 (GMT-5)
Generating: from_nm ( base is meter ) with formula: v÷1E9
Generating: to_nm ( base is meter ) with formula: v×1E9
Generating: from_um ( base is meter ) with formula: v÷1E6
Generating: to_um ( base is meter ) with formula: v×1E6
Generating: from_mm ( base is meter ) with formula: v÷1000
Generating: to_mm ( base is meter ) with formula: v×1000
Generating: from_cm ( base is meter ) with formula: v÷100
Generating: to_cm ( base is meter ) with formula: v×100
Generating: from_dm ( base is meter ) with formula: v÷10
Generating: to_dm ( base is meter ) with formula: v×10
Generating: from_meter ( base is meter ) with formula: v
Generating: to_meter ( base is meter ) with formula: v
Generating: from_km ( base is meter ) with formula: v×1000
Generating: to_km ( base is meter ) with formula: v÷1000
Generating: from_UA ( base is meter ) with formula: v×149597870700
Generating: to_UA ( base is meter ) with formula: v÷149597870700
Generating: from_AU ( base is meter ) with formula: v×149597870700
Generating: to_AU ( base is meter ) with formula: v÷149597870700
Generating: from_lightyear ( base is meter ) with formula: v×9454254955488E3
Generating: to_lightyear ( base is meter ) with formula: v÷9454254955488E3
Generating: from_parsec ( base is meter ) with formula: v×3.0856776E16
Generating: to_parsec ( base is meter ) with formula: v÷3.0856776E16
Generating: from_inch ( base is meter ) with formula: v×0.0254
Generating: to_inch ( base is meter ) with formula: v÷0.0254
Generating: from_feet ( base is meter ) with formula: v×0.3048
Generating: to_feet ( base is meter ) with formula: v÷0.3048
Generating: from_yard ( base is meter ) with formula: v×0.9144
Generating: to_yard ( base is meter ) with formula: v÷0.9144
Generating: from_mile ( base is meter ) with formula: v×1609.344
Generating: to_mile ( base is meter ) with formula: v÷1609.344
Generating: from_nm2 ( base is meter2 ) with formula: v÷1E18
Generating: to_nm2 ( base is meter2 ) with formula: v×1E18
Generating: from_um2 ( base is meter2 ) with formula: v÷1E12
Generating: to_um2 ( base is meter2 ) with formula: v×1E12
Generating: from_mm2 ( base is meter2 ) with formula: v÷1E6
Generating: to_mm2 ( base is meter2 ) with formula: v×1E6
Generating: from_cm2 ( base is meter2 ) with formula: v÷1E4
Generating: to_cm2 ( base is meter2 ) with formula: v×1E4
Generating: from_dm2 ( base is meter2 ) with formula: v÷1E3
Generating: to_dm2 ( base is meter2 ) with formula: v×1E3
Generating: from_m2 ( base is meter2 ) with formula: v
Generating: to_m2 ( base is meter2 ) with formula: v
Generating: from_meter2 ( base is meter2 ) with formula: v
Generating: to_meter2 ( base is meter2 ) with formula: v
Generating: from_km2 ( base is meter2 ) with formula: v×1E6
Generating: to_km2 ( base is meter2 ) with formula: v÷1E6
Generating: from_lightyear2 ( base is meter2 ) with formula: v×8.938293676E31
Generating: to_lightyear2 ( base is meter2 ) with formula: v÷8.938293676E31
Generating: from_parsec2 ( base is meter2 ) with formula: v×9.521406251E32
Generating: to_parsec2 ( base is meter2 ) with formula: v÷9.521406251E32
Generating: from_inch2 ( base is meter2 ) with formula: v×0.00064516
Generating: to_inch2 ( base is meter2 ) with formula: v÷0.00064516
Generating: from_feet2 ( base is meter2 ) with formula: v×0.09290304
Generating: to_feet2 ( base is meter2 ) with formula: v÷0.09290304
Generating: from_yard2 ( base is meter2 ) with formula: v×0.83612736
Generating: to_yard2 ( base is meter2 ) with formula: v÷0.83612736
Generating: from_mile2 ( base is meter2 ) with formula: v×2589988.11
Generating: to_mile2 ( base is meter2 ) with formula: v÷2589988.11
Generating: from_kelvin ( base is kelvin ) with formula: 0⌈v
Generating: to_kelvin ( base is kelvin ) with formula: v
Generating: from_celcius ( base is kelvin ) with formula: 0⌈v+273.15
Generating: to_celcius ( base is kelvin ) with formula: v-273.15
Generating: from_farenheit ( base is kelvin ) with formula: 0⌈273.15+5×(v-32)÷9
Generating: to_farenheit ( base is kelvin ) with formula: 32+(v-273.15)×1.8
Generating: from_nm3 ( base is meter3 ) with formula: v÷1E27
Generating: to_nm3 ( base is meter3 ) with formula: v×1E27
Generating: from_um3 ( base is meter3 ) with formula: v÷1E18
Generating: to_um3 ( base is meter3 ) with formula: v×1E18
Generating: from_mm3 ( base is meter3 ) with formula: v÷1E9
Generating: to_mm3 ( base is meter3 ) with formula: v×1E9
Generating: from_cm3 ( base is meter3 ) with formula: v÷1E6
Generating: to_cm3 ( base is meter3 ) with formula: v×1E6
Generating: from_dc3 ( base is meter3 ) with formula: v÷1E3
Generating: to_dc3 ( base is meter3 ) with formula: v×1E3
Generating: from_m3 ( base is meter3 ) with formula: v
Generating: to_m3 ( base is meter3 ) with formula: v
Generating: from_meter3 ( base is meter3 ) with formula: v
Generating: to_meter3 ( base is meter3 ) with formula: v
Generating: from_km3 ( base is meter3 ) with formula: v×1E9
Generating: to_km3 ( base is meter3 ) with formula: v÷1E9
Generating: from_lightyear3 ( base is meter3 ) with formula: v×8.450490728E47
Generating: to_lightyear3 ( base is meter3 ) with formula: v÷8.450490728E47
Generating: from_parsec3 ( base is meter3 ) with formula: v×2.937998999E49
Generating: to_parsec3 ( base is meter3 ) with formula: v÷2.937998999E49
Generating: from_inch3 ( base is meter3 ) with formula: v×0.000016387064
Generating: to_inch3 ( base is meter3 ) with formula: v÷0.000016387064
Generating: from_feet3 ( base is meter3 ) with formula: v×0.02831684659
Generating: to_feet3 ( base is meter3 ) with formula: v÷0.02831684659
Generating: from_yard3 ( base is meter3 ) with formula: v×0.764554858
Generating: to_yard3 ( base is meter3 ) with formula: v÷0.764554858
Generating: from_mile3 ( base is meter3 ) with formula: v×4168181825
Generating: to_mile3 ( base is meter3 ) with formula: v÷4168181825
Generating: from_pg ( base is gram ) with formula: v÷1E9
Generating: to_pg ( base is gram ) with formula: v×1E9
Generating: from_ug ( base is gram ) with formula: v÷1E6
Generating: to_ug ( base is gram ) with formula: v×1E6
Generating: from_mg ( base is gram ) with formula: v÷1E3
Generating: to_mg ( base is gram ) with formula: v×1E3
Generating: from_gr ( base is gram ) with formula: v
Generating: to_gr ( base is gram ) with formula: v
Generating: from_kg ( base is gram ) with formula: v×1000
Generating: to_kg ( base is gram ) with formula: v÷1000
Generating: from_ton ( base is gram ) with formula: v×1E6
Generating: to_ton ( base is gram ) with formula: v÷1E6
Generating: from_ounce ( base is gram ) with formula: v×28.34952312
Generating: to_ounce ( base is gram ) with formula: v÷28.34952312
Generating: from_pound ( base is gram ) with formula: v×453.59237
Generating: to_pound ( base is gram ) with formula: v÷453.59237
Generating: from_uston ( base is gram ) with formula: v×907184.74
Generating: to_uston ( base is gram ) with formula: v÷907184.74
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) Convert
-----------------------------------------
Processing: Deck.xml as Deck ...
SAVED 2017-02-23 19:59:54 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) Deck
-----------------------------------------
Processing: Delta.xml as Delta ...
SAVED 2017-02-23 19:59:54 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) Delta
-----------------------------------------
Processing: Det.xml as Det ...
SAVED 2017-02-23 19:59:54 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) Det
-----------------------------------------
Processing: FIB.xml as FIB ...
SAVED 2017-02-23 19:59:54 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) FIB
-----------------------------------------
Processing: FIBonachi.xml as FIBonachi ...
SAVED 2017-02-23 19:59:54 (GMT-5)
0
1
1
2
3
5
8
13
21
34
55
89
144
233
377
610
987
1597
2584
4181
6765
10946
17711
28657
46368
75025
121393
196418
317811
514229
832040
1346269
2178309
3524578
5702887
9227465
14930352
24157817
39088169
63245986
102334155
165580141
267914296
433494437
701408733
1134903170
1836311903
2971215073
4807526976
7778742049
12586269025
20365011074
32951280099
53316291173
86267571272
139583862445
225851433717
365435296162
591286729879
956722026041
1548008755920
2504730781961
4052739537881
6557470319842
10610209857723
17167680177565
27777890035288
44945570212853
72723460248141
117669030460994
190392490709135
308061521170129
498454011879264
806515533049393
1304969544928657
2111485077978050
3416454622906707
5527939700884757
8944394323791464
14472334024676221
23416728348467685
37889062373143906
61305790721611591
99194853094755497
160500643816367088
259695496911122585
420196140727489673
679891637638612258
1100087778366101931
1779979416004714189
2880067194370816120
4660046610375530309
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) FIBonachi
-----------------------------------------
Processing: Grid.xml as Grid ...
SAVED 2017-02-23 19:59:54 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) Grid
-----------------------------------------
Processing: IP.xml as IP ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) IP
-----------------------------------------
Processing: IPt.xml as IPt ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) IPt
-----------------------------------------
Processing: Important.xml as Important ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) Important
-----------------------------------------
Processing: Kakuro.xml as Kakuro ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) Kakuro
-----------------------------------------
Processing: Loto.xml as Loto ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) Loto
-----------------------------------------
Processing: Loto2.xml as Loto2 ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) Loto2
-----------------------------------------
Processing: Qdlx.xml as Qdlx ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) Qdlx
-----------------------------------------
Processing: RunCmd.xml as RunCmd ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) RunCmd
-----------------------------------------
Processing: SDK.xml as SDK ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) SDK
-----------------------------------------
Processing: SU.xml as SU ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) SU
-----------------------------------------
Processing: Setup.xml as Setup ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) Setup
-----------------------------------------
Processing: Sock.xml as Sock ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) Sock
-----------------------------------------
Processing: SockHelper.xml as SockHelper ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) SockHelper
-----------------------------------------
Processing: Sqlite.xml as Sqlite ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) Sqlite
-----------------------------------------
Processing: Sudo.xml as Sudo ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) Sudo
-----------------------------------------
Processing: SudoRepo.xml as SudoRepo ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) SudoRepo
-----------------------------------------
Processing: Sudoku.xml as Sudoku ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) Sudoku
-----------------------------------------
Processing: Sudoku2.xml as Sudoku2 ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) Sudoku2
-----------------------------------------
Processing: SumNumPages.xml as SumNumPages ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) SumNumPages
-----------------------------------------
Processing: Trim.xml as Trim ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 19:59:55 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) Trim
-----------------------------------------
Processing: Util.xml as Util ...
SAVED 2017-02-23 19:59:55 (GMT-5)
2017-02-23 20:01:21 (GMT-5) Util
-----------------------------------------
Processing: X.xml as X ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 20:01:21 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) X
-----------------------------------------
Processing: XSudoku.xml as XSudoku ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 20:01:21 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) XSudoku
-----------------------------------------
Processing: apc.xml as apc ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 20:01:21 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) apc
-----------------------------------------
Processing: convert.xml as convert ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 20:01:21 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) convert
-----------------------------------------
Processing: cvt.xml as cvt ...
SAVED 2017-02-23 19:59:55 (GMT-5)
from_kelvin
from_celcius
from_farenheit
to_kelvin
to_celcius
to_farenheit
from_pg
from_ug
from_mg
from_gram
from_kg
from_ounce
from_pound
from_uston
from_ton
to_pg
to_ug
to_mg
to_gram
to_kg
to_ounce
to_pound
to_uston
to_ton
from_pm
from_um
from_mm
from_cm
from_inch
from_in
from_dm
from_feet
from_ft
from_yard
from_yd
from_meter
from_me
from_km
from_mile
from_NM
from_UA
from_AU
from_parsec
from_lightyear
from_ly
to_pm
to_um
to_mm
to_cm
to_inch
to_in
to_dm
to_feet
to_ft
to_yard
to_yd
to_meter
to_me
to_km
to_mile
to_NM
to_UA
to_AU
to_parsec
to_lightyear
to_ly
from_pm2
from_um2
from_mm2
from_cm2
from_inch2
from_in2
from_dm2
from_feet2
from_ft2
from_yard2
from_y2
from_meter2
from_me2
from_ha
from_km2
from_mile2
from_NM2
from_UA2
from_AU2
from_parsec2
from_lightyear2
from_ly2
to_pm2
to_um2
to_mm2
to_cm2
to_inch2
to_in2
to_dm2
to_feet2
to_ft2
to_yard2
to_y2
to_meter2
to_me2
to_ha
to_km2
to_mile2
to_NM2
to_UA2
to_AU2
to_parsec2
to_lightyear2
to_ly2
from_pm3
from_um3
from_mm3
from_cm3
from_ml
from_dm3
from_dl
from_inch3
from_in3
from_liter
from_litre
from_feet3
from_ft3
from_yard3
from_yd3
from_meter3
from_me3
from_km3
from_mile3
from_NM3
from_UA3
from_AU3
from_parsec3
from_lightyear3
from_ly3
to_pm3
to_um3
to_mm3
to_cm3
to_ml
to_dm3
to_dl
to_inch3
to_in3
to_liter
to_litre
to_feet3
to_ft3
to_yard3
to_yd3
to_meter3
to_me3
to_km3
to_mile3
to_NM3
to_UA3
to_AU3
to_parsec3
to_lightyear3
to_ly3
SAVED 2017-02-23 20:01:21 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:21 (GMT-5) cvt
-----------------------------------------
Processing: df.xml as df ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 20:01:21 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:22 (GMT-5) df
-----------------------------------------
Processing: fast.xml as fast ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 20:01:21 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:22 (GMT-5) fast
-----------------------------------------
Processing: fio.xml as fio ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 20:01:21 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:22 (GMT-5) fio
-----------------------------------------
Processing: rien.xml as rien ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 20:01:21 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:22 (GMT-5) rien
-----------------------------------------
Processing: temp.xml as temp ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 20:01:21 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:22 (GMT-5) temp
-----------------------------------------
Processing: test.xml as test ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 20:01:21 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:22 (GMT-5) test
-----------------------------------------
Processing: toupper.xml as toupper ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 20:01:21 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:22 (GMT-5) toupper
-----------------------------------------
Processing: work.xml as work ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 20:01:21 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:22 (GMT-5) work
-----------------------------------------
Processing: xxx.xml as xxx ...
SAVED 2017-02-23 19:59:55 (GMT-5)
SAVED 2017-02-23 20:01:21 (GMT-5)
DUMPED 2017-02-23 18:27:08 (GMT-5)
2017-02-23 20:01:23 (GMT-5) xxx
-----------------------------------------
address@hidden:/home/xtian] $
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Bug-apl] My script you may use (tailor before please),
Christian Robert <=