how to use zcat without the warning when using pipeHow do I prompt for Yes/No/Cancel input in a Linux shell script?How to check if a string contains a substring in BashHow to check if a program exists from a Bash script?How do I tell if a regular file does not exist in Bash?Pipe to/from the clipboard in Bash scriptHow to mkdir only if a dir does not already exist?How to pipe stderr, and not stdout?How do I reload .bashrc without logging out and back in?How to concatenate string variables in BashHow do I find all files containing specific text on Linux?

Can a stoichiometric mixture of oxygen and methane exist as a liquid at standard pressure and some (low) temperature?

Why is so much work done on numerical verification of the Riemann Hypothesis?

Terse Method to Swap Lowest for Highest?

Picking the different solutions to the time independent Schrodinger eqaution

Can I say "fingers" when referring to toes?

Is there a way to get `mathscr' with lower case letters in pdfLaTeX?

Keeping a ball lost forever

How do apertures which seem too large to physically fit work?

What is going on with 'gets(stdin)' on the site coderbyte?

Why did the EU agree to delay the Brexit deadline?

How to cover method return statement in Apex Class?

How to rewrite equation of hyperbola in standard form

Why "had" in "[something] we would have made had we used [something]"?

Why does a simple loop result in ASYNC_NETWORK_IO waits?

The IT department bottlenecks progress. How should I handle this?

Why does the Sun have different day lengths, but not the gas giants?

Non-trope happy ending?

creating a ":KeepCursor" command

It grows, but water kills it

Does the UK parliament need to pass secondary legislation to accept the Article 50 extension

What happens if you are holding an Iron Flask with a demon inside and walk into an Antimagic Field?

Can a College of Swords bard use a Blade Flourish option on an opportunity attack provoked by their own Dissonant Whispers spell?

Has any country ever had 2 former presidents in jail simultaneously?

Why can Carol Danvers change her suit colours in the first place?



how to use zcat without the warning when using pipe


How do I prompt for Yes/No/Cancel input in a Linux shell script?How to check if a string contains a substring in BashHow to check if a program exists from a Bash script?How do I tell if a regular file does not exist in Bash?Pipe to/from the clipboard in Bash scriptHow to mkdir only if a dir does not already exist?How to pipe stderr, and not stdout?How do I reload .bashrc without logging out and back in?How to concatenate string variables in BashHow do I find all files containing specific text on Linux?













0















I'm trying to silent zcat warning through the option -q or 2>/dev/null
so far nothing is working. I keep getting the same warning when a file name is missing.
I'm looping through 100s of compressed files to extract a specific data. The idea is if zcat encounter a bad name or a missing file name, zcat will just stay quite and wait for the next cycle, but currently this is what I'm getting when using both options




zcat -q $ram | head -n1 or zcat $ram | head -n1 2>/dev/null




gzip: compressed data not read from a terminal. Use -f to force decompression.
For help, type: gzip -h


Any idea how to solve that or a faster way to read a .gz file with a silent feature that works?



Thanks










share|improve this question
























  • 2>/dev/null should work, and works fine for me from the command line. If this is from a script, can you edit your post to include a few lines of context?

    – B. Shefter
    Mar 8 at 3:15






  • 1





    sorry I updated the question I forgot to add the pipe. Yes!!! without it , it will work, but when I try to use pipe, it doesn't work.

    – Driven
    Mar 8 at 3:42















0















I'm trying to silent zcat warning through the option -q or 2>/dev/null
so far nothing is working. I keep getting the same warning when a file name is missing.
I'm looping through 100s of compressed files to extract a specific data. The idea is if zcat encounter a bad name or a missing file name, zcat will just stay quite and wait for the next cycle, but currently this is what I'm getting when using both options




zcat -q $ram | head -n1 or zcat $ram | head -n1 2>/dev/null




gzip: compressed data not read from a terminal. Use -f to force decompression.
For help, type: gzip -h


Any idea how to solve that or a faster way to read a .gz file with a silent feature that works?



Thanks










share|improve this question
























  • 2>/dev/null should work, and works fine for me from the command line. If this is from a script, can you edit your post to include a few lines of context?

    – B. Shefter
    Mar 8 at 3:15






  • 1





    sorry I updated the question I forgot to add the pipe. Yes!!! without it , it will work, but when I try to use pipe, it doesn't work.

    – Driven
    Mar 8 at 3:42













0












0








0


1






I'm trying to silent zcat warning through the option -q or 2>/dev/null
so far nothing is working. I keep getting the same warning when a file name is missing.
I'm looping through 100s of compressed files to extract a specific data. The idea is if zcat encounter a bad name or a missing file name, zcat will just stay quite and wait for the next cycle, but currently this is what I'm getting when using both options




zcat -q $ram | head -n1 or zcat $ram | head -n1 2>/dev/null




gzip: compressed data not read from a terminal. Use -f to force decompression.
For help, type: gzip -h


Any idea how to solve that or a faster way to read a .gz file with a silent feature that works?



Thanks










share|improve this question
















I'm trying to silent zcat warning through the option -q or 2>/dev/null
so far nothing is working. I keep getting the same warning when a file name is missing.
I'm looping through 100s of compressed files to extract a specific data. The idea is if zcat encounter a bad name or a missing file name, zcat will just stay quite and wait for the next cycle, but currently this is what I'm getting when using both options




zcat -q $ram | head -n1 or zcat $ram | head -n1 2>/dev/null




gzip: compressed data not read from a terminal. Use -f to force decompression.
For help, type: gzip -h


Any idea how to solve that or a faster way to read a .gz file with a silent feature that works?



Thanks







linux bash compression ksh zcat






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 8 at 3:37







Driven

















asked Mar 8 at 1:57









DrivenDriven

227




227












  • 2>/dev/null should work, and works fine for me from the command line. If this is from a script, can you edit your post to include a few lines of context?

    – B. Shefter
    Mar 8 at 3:15






  • 1





    sorry I updated the question I forgot to add the pipe. Yes!!! without it , it will work, but when I try to use pipe, it doesn't work.

    – Driven
    Mar 8 at 3:42

















  • 2>/dev/null should work, and works fine for me from the command line. If this is from a script, can you edit your post to include a few lines of context?

    – B. Shefter
    Mar 8 at 3:15






  • 1





    sorry I updated the question I forgot to add the pipe. Yes!!! without it , it will work, but when I try to use pipe, it doesn't work.

    – Driven
    Mar 8 at 3:42
















2>/dev/null should work, and works fine for me from the command line. If this is from a script, can you edit your post to include a few lines of context?

– B. Shefter
Mar 8 at 3:15





2>/dev/null should work, and works fine for me from the command line. If this is from a script, can you edit your post to include a few lines of context?

– B. Shefter
Mar 8 at 3:15




1




1





sorry I updated the question I forgot to add the pipe. Yes!!! without it , it will work, but when I try to use pipe, it doesn't work.

– Driven
Mar 8 at 3:42





sorry I updated the question I forgot to add the pipe. Yes!!! without it , it will work, but when I try to use pipe, it doesn't work.

– Driven
Mar 8 at 3:42












1 Answer
1






active

oldest

votes


















2














At present, you're redirecting only stderr from head; you're not redirecting from zcat at all. If you want to redirect stderr from zcat, then you need to put the redirection before the pipe symbol, like so:



zcat $ram 2>/dev/null | head -n1





share|improve this answer























  • thanks for the advice I will keep that in mind next time

    – Driven
    Mar 8 at 4:17










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55055664%2fhow-to-use-zcat-without-the-warning-when-using-pipe%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









2














At present, you're redirecting only stderr from head; you're not redirecting from zcat at all. If you want to redirect stderr from zcat, then you need to put the redirection before the pipe symbol, like so:



zcat $ram 2>/dev/null | head -n1





share|improve this answer























  • thanks for the advice I will keep that in mind next time

    – Driven
    Mar 8 at 4:17















2














At present, you're redirecting only stderr from head; you're not redirecting from zcat at all. If you want to redirect stderr from zcat, then you need to put the redirection before the pipe symbol, like so:



zcat $ram 2>/dev/null | head -n1





share|improve this answer























  • thanks for the advice I will keep that in mind next time

    – Driven
    Mar 8 at 4:17













2












2








2







At present, you're redirecting only stderr from head; you're not redirecting from zcat at all. If you want to redirect stderr from zcat, then you need to put the redirection before the pipe symbol, like so:



zcat $ram 2>/dev/null | head -n1





share|improve this answer













At present, you're redirecting only stderr from head; you're not redirecting from zcat at all. If you want to redirect stderr from zcat, then you need to put the redirection before the pipe symbol, like so:



zcat $ram 2>/dev/null | head -n1






share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 8 at 3:49









B. ShefterB. Shefter

389111




389111












  • thanks for the advice I will keep that in mind next time

    – Driven
    Mar 8 at 4:17

















  • thanks for the advice I will keep that in mind next time

    – Driven
    Mar 8 at 4:17
















thanks for the advice I will keep that in mind next time

– Driven
Mar 8 at 4:17





thanks for the advice I will keep that in mind next time

– Driven
Mar 8 at 4:17



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55055664%2fhow-to-use-zcat-without-the-warning-when-using-pipe%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

How to get text form Clipboard with JavaScript in Firefox 56?How to validate an email address in JavaScript?How do JavaScript closures work?How do I remove a property from a JavaScript object?How do you get a timestamp in JavaScript?How do I copy to the clipboard in JavaScript?How do I include a JavaScript file in another JavaScript file?Get the current URL with JavaScript?How to replace all occurrences of a string in JavaScriptHow to check whether a string contains a substring in JavaScript?How do I remove a particular element from an array in JavaScript?

Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

List of MPs elected to the English parliament in 1640 (April) Contents List of constituencies and members See also Notes References Navigation menueNational Archives – The Glynde Place ArchivesCobbett's Parliamentary history of England, from the Norman Conquest in 1066 to the year 1803'Aldermen in Parliament', The Aldermen of the City of London: Temp. Henry III – 1912onepage&q&f&#61, false 229