|
csh formatted strings
Hi,
currently I'm trying to write a csh script that should do the following:
set i = 1
while ($i < 100) {
cp AAA BBB
set i = $i +1
}
where AAA is a string like this file.11.txt, file.21.txt, ...
and BBB is a string like this file_0001, file_0002, ...
Is it possible to generate the string AAA and BBB automatically from the variable i?
Every hint is appreciated!
Kind regards,
Sebastian.
|