Hi,
I have a script that reads numbers from a seperate file and runs a csql update applying a negative to cartons that are in that group number. I want to remove that number from the file after the negative is applied so that group is not updated again. Simple question that I think I have made confusing.
Example:
mgCheck.txt:
37812
37813
37814
mgCheck:
for input in $(cat mgCheck.txt)
do
csql -c -f "update carton set skuWeight = skuWeight -9999 _
where masterGroupId = ( '00000$input' ) and status = 65"
done
In the example above lets say that 37812 is updated to negative. I want to remove that from mgCheck.txt so that it is not updated again when the script runs automatically 30 minutes later. Thanks for any help.
I have a script that reads numbers from a seperate file and runs a csql update applying a negative to cartons that are in that group number. I want to remove that number from the file after the negative is applied so that group is not updated again. Simple question that I think I have made confusing.
Example:
mgCheck.txt:
37812
37813
37814
mgCheck:
for input in $(cat mgCheck.txt)
do
csql -c -f "update carton set skuWeight = skuWeight -9999 _
where masterGroupId = ( '00000$input' ) and status = 65"
done
In the example above lets say that 37812 is updated to negative. I want to remove that from mgCheck.txt so that it is not updated again when the script runs automatically 30 minutes later. Thanks for any help.