Quantcast
Channel: Take Command / TCC
Viewing all articles
Browse latest Browse all 1689

Why does TCC tell me TakeCommand is not loaded?

$
0
0
Consider the following contents of my ForEachSubfolder.bat batch file:

@echo off
pushd
for /d %%d in (.) do (
echo Changing to: %%d
cd "%%d"
rem echo %cd%
%*
cd ..
)
popd

I use that to execute a given command in every subfolder of a given root folder. It's a handy way, for example, to do a git pull for every source project underneath a common root. For sake of context, I'm running the command within a TCC tab in Windows Terminal, and for every...

Read more

Viewing all articles
Browse latest Browse all 1689

Trending Articles