I am using dos2unix *.sh
to convert all the .sh
files in the current directory.
So how to convert all the .sh
files in the subfolders as well?
I tried this but it does not work for bash: How to run dos2unix for all files in a directory and subdirecty in Powershell
qsub *.sh
for all the files as well. I triedfind . -type f -name "*.sh" -exec qsub {} \+;
, but why only one job was submitted? – Macmillan