C
[email protected]
Guest
Is and if so how is it possible to share global history lists between TCMD versions from 8 to 11?
I currently have a BTM that is called at system startup:
BOF startup.btm
: Load all alias, function, dirhistory, history lists saved from last TCMD session
:
*set SHRALIAS_SAVE_PATH=D:\TakeCommand\LOGS
echo SHRALIAS_SAVE_PATH: %SHRALIAS_SAVE_PATH
*shralias
for %a in ("%SHRALIAS_SAVE_PATH%\*.sav") do (
echo.
echo %a
set fun=%@name[%a]
echo %fun
echo Loading %[fun] ...
echo %[fun] /r "%a"
%[fun] /r "%a"
)
delay 1
:EOF startup.btm
then TCSTART.btm has nothing that affects the global lists or shralias....
Any help greatly appreciated!
I currently have a BTM that is called at system startup:
BOF startup.btm
: Load all alias, function, dirhistory, history lists saved from last TCMD session
:
*set SHRALIAS_SAVE_PATH=D:\TakeCommand\LOGS
echo SHRALIAS_SAVE_PATH: %SHRALIAS_SAVE_PATH
*shralias
for %a in ("%SHRALIAS_SAVE_PATH%\*.sav") do (
echo.
echo %a
set fun=%@name[%a]
echo %fun
echo Loading %[fun] ...
echo %[fun] /r "%a"
%[fun] /r "%a"
)
delay 1
:EOF startup.btm
then TCSTART.btm has nothing that affects the global lists or shralias....
Any help greatly appreciated!