The following bash for loop iterates over every file in a directory, moving it to a new location:

for file in *.com; do mv $file /home/Scratch/$file; done

What would be the equivalent for the C shell?

有帮助吗?

解决方案

Unfortunately, you cannot have a one line for loop in C-shell scripting. The best you can do is create a script file, if you commonly use it.

foreach file (*.com)
  mv $file /home/Scratch/$file
end
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top