컬 -Ls 'http://example.com'은 아무 것도 출력하지 않는다는 뜻인가요?

컬 -Ls 'http://example.com'은 아무 것도 출력하지 않는다는 뜻인가요?

s-Ls아무것도 출력되어서는 안 된다는 뜻 인가요 ?

그렇다면 출력은 무엇입니까?

답변1

아니요, 결과는 다음과 같습니다.

curl -Ls 'http://pastebin.com/raw.php?i=r2jYDZaw'
jQuery(document).ready(function(){

    //Check to see if the window is top if not then display button
    jQuery(window).scroll(function(){
        if (jQuery(this).scrollTop() > 100) {
            jQuery('.scrollToTop').fadeIn();
        } else {
            jQuery('.scrollToTop').fadeOut();
        }
    });

    //Click event to scroll to top
    jQuery('.scrollToTop').click(function(){
        jQuery('html, body').animate({scrollTop : 0},800);
        return false;
    });

});%    

매뉴얼 페이지에서:

-s, --silent
              Silent or quiet mode. Don't show progress meter or error messages.  Makes Curl mute. It will still output  the  data  you
              ask for, potentially even to the terminal/stdout unless you redirect it.

관련 정보