1830231 Members
1913 Online
109999 Solutions
New Discussion

patch question

 
Andy_9
Occasional Contributor

patch question

Hello,

I have several patches that I need to bundle into one file. Can anyone eplease tell me how to bundle several *.depot files into one pls. I believe that once I have all those files into a bundle, I can then run the swinstall command. Any help will be greatly appreciated.
2 REPLIES 2
eran maor
Honored Contributor

Re: patch question

Do this

# cd /tmp
# for X in PH*
# do
# sh $X
# done
# mkdir /tmp/patches
# for X in /tmp/PH*.depot
# do
# swcopy -s /tmp/${X} \* @ /tmp/patches
# done

Then use /tmp/patches as your depot for swinstall
love computers