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.