Question
Batch editing with Arbortext
Hi Steve--
You can execute Arbortext commands from the command line in Windows
using the -c switch, which means you could set up a batch file to do
what you want.
The batch file would look roughly like this: (untested, debugging left
as an exercise)
:: resave.bat
:: set the following based on your version/environment
set arbortext=C:\Program Files\PTC\Arbortext Editor\bin\x64\editor.exe
for %%i in (%1) do "%arbortext%" -c "save" "%%i"
HTH
--Clay
You can execute Arbortext commands from the command line in Windows
using the -c switch, which means you could set up a batch file to do
what you want.
The batch file would look roughly like this: (untested, debugging left
as an exercise)
:: resave.bat
:: set the following based on your version/environment
set arbortext=C:\Program Files\PTC\Arbortext Editor\bin\x64\editor.exe
for %%i in (%1) do "%arbortext%" -c "save" "%%i"
HTH
--Clay

