After searching high and low for a password manager that will let me store the passwords on my own server and some hassles using other password managers, I found Enpass. Enpass will excel where other password managers fail. My requirements were 1) no monthly fee 1) Android app 1) Windows app 1) Fire...

Just a small batch snippet to concatenate text files located in subfolders into one text file. I needed this to collect all single output data files from some measurements.

for /F "delims=" %%f in (
  ' Dir /B /S /O /A-D *.cnt ^|find /v /i "output.txt" '
) do (
echo "%%f" >> output.txt
type "%%f"...