I have a list of names in a text file (list.txtlist.txt) I want to create a list of folders for the names included in that file. I wrote the following script, but it doesn't work and I don't know what is wrong:
#!/bin/tschtcsh
for name_id in `cat <path to list.txt>/list.txt` ; do
mkdir <name_id>${name_id}
The file list.txtlist.txt and the scripts are in the same folder.