I am using CygWin to run a bash file but I am getting weird results.
And this is what I get
Moreover, the new folder is named CLEANDATA* instead of CLEANDATA.
Any help will be very much appreciated
Code:
#!/bin/bash
mkdir CLEANDATA
mv *FASTA CLEANDATA
cd CLEANDATA
ls
echo "COMPLETE"
Code:
$ ./Pipe.txt
./Pipe.txt: line 5: $'ls\r': command not found
COMPLETE
Any help will be very much appreciated