Please suggest what all packages and commands I should use if I want to generate the vpaths to the files and folders opened. Thanks
Not very clear from your question what you want to acheive?? where exactly you want to extract the vPath?
can use clt iwvpath, can refer to clt document at page 195 for more details about its usage.
HiI have to submit all the modified files in the Default store to staging.i am usinf iwlistmod.exe to find out all the modified files in a workarea. Now ,how should I generate the vpath to these workareas where the files have been modified?Thanks
...my $path = "/default/main/devnet/WORKAREA/work";my @results = qx($iwlistmod $path 2>&1);chomp(@results);s|^[a-z]?\s*|$path/| foreach(@results);...
If you're using iwlistmod to find the modified files - you are already providing a vpath to iwlistmod in order to do so. Use that vpath as a prefix to all paths returned in the results of running iwlistmod. E.g.:...my $path = "/default/main/devnet/WORKAREA/work";my @results = qx($iwlistmod $path 2>&1);chomp(@results);s|^[a-z]?\s*|$path/| foreach(@results);...
Could you please explain what the purpose of 2>&1 is?