I am trying to write a script to go through a set of file names removing the dashes and white spaces, and then add a suffix before the file extension. Here is the set of files:
alex@alex-laptop:~/matlab/chiroping/workspace/myFunctions/labellings/Panama20090322new$ ls Me*
Measurements 2009-03-22 Session6.xml Measurements Panama 2009-03-22 Session4.xml
Measurements Panama 2009-03-22 Session10.xml Measurements Panama 2009-03-22 Session5.xml
Measurements Panama 2009-03-22 Session1.xml Measurements Panama 2009-03-22 Session6.xml
Measurements Panama 2009-03-22 Session2.xml Measurements Panama 2009-03-22 Session7.xml
Measurements Panama 2009-03-22 Session3.xml Measurements Panama 2009-03-22 Session8.xml
So here is the script that goes through the set of files, removes the dashes and white space, but it is as if variable "var2" does not get reset to the expression below. It is initially set to "tempSTR" and remains so.
alex@alex-laptop:~/matlab/chiroping/workspace/myFunctions/labellings/Panama20090322new$ for f in Me*;
do var1=${f//[ -]/}; var2= echo -n $var1 | cut -f1 -d '.';
suffix="new"; var3= echo $var2; done
Measurements20090322Session6
tempSTR
MeasurementsPanama20090322Session10
tempSTR
MeasurementsPanama20090322Session1
tempSTR
MeasurementsPanama20090322Session2
tempSTR
MeasurementsPanama20090322Session3
tempSTR
MeasurementsPanama20090322Session4
tempSTR
MeasurementsPanama20090322Session5
tempSTR
MeasurementsPanama20090322Session6
tempSTR
MeasurementsPanama20090322Session7
tempSTR
MeasurementsPanama20090322Session8
tempSTR
I think that there is something wrong with this line
var2= echo -n $var1 | cut -f1 -d '.';
when trying to set var2 to the expression which prints out ok initially
Best,
var= echo "a"work in your bash? In mine it doesn't. var=echo "a"– khachik Dec 6 '10 at 14:45