0

The exe files should run on all the files in a folder.

#!/bin/bash
cd 'C:UsersLENOVODesktopTestModules'
find . -maxdepth 1 -name '*.sv' 
  -printf 'Handling %f...' 
  -a -exec viewer.exe {}; 
  -a -exec mv {} ./old/ ; 
  -a -printf 'donen'
Anonymous Asked question May 13, 2021