Expand my Community achievements bar.

Adobe Campaign User Groups are live now. Join our Adobe Campaign User Groups and connect with your local leaders!
SOLVED

unzip .zip file in data loading activity

Avatar

Level 2

Hi

 

I want to unzip a zipped file in data loading activity.

I checked pre-process the file option and tried various commands but the data load activity is giving error every time.

 

Following are the commands I have tried:

gunzip -c <%=vars.filename%>

gunzip <%=vars.filename%>

gzip -d <%=vars.filename%>

gzip -S <%=vars.filename%>

zip -d <%=vars.filename%>

etc.

 

What would be the correct command to unzip the file first and then load it?

1 Accepted Solution

Avatar

Correct answer by
Level 2

Hi

 

If it helps someone, I found the solution.

 

You can use the following command.

zcat <%=vars.filename%>

 

 

Thanks

View solution in original post

1 Reply

Avatar

Correct answer by
Level 2

Hi

 

If it helps someone, I found the solution.

 

You can use the following command.

zcat <%=vars.filename%>

 

 

Thanks