????

Your IP : 18.191.171.10


Current Path : /bin/
Upload File :
Current File : //bin/znew

#!/bin/sh

# Copyright (C) 1998, 2002, 2004, 2007, 2010 Free Software Foundation
# Copyright (C) 1993 Jean-loup Gailly

# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

bindir='/usr/bin'
case $1 in
--__bindir) bindir=${2?}; shift; shift;;
esac
PATH=$bindir:$PATH; export PATH

version="znew (gzip) 1.5
Copyright (C) 2010-2012 Free Software Foundation, Inc.
This is free software.  You may redistribute copies of it under the terms of
the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.
There is NO WARRANTY, to the extent permitted by law.

Written by Jean-loup Gailly."

usage="Usage: $0 [OPTION]... [FILE]...
Recompress files from .Z (compress) format to .gz (gzip) format.

Options:

  -f     Force recompression even if a .gz file already exists.
  -t     Test the new files before deleting originals.
  -v     Verbose; display name and statistics for each file compressed.
  -9     Use the slowest compression method (optimal compression).
  -P     Use pipes for the conversion to reduce disk space usage.
  -K     Keep a .Z file when it is smaller than the .gz file; implies -t.
      --help     display this help and exit
      --version  output version information and exit

Report bugs to <bug-gzip@gnu.org>."

check=0
pipe=0
opt=
files=
keep=0
res=0
old=0
new=0
block=1024
# block is the disk block size (best guess, need not be exact)

warn="(does not preserve modes and timestamp)"
cpmod= 
cpmodarg= 
if type ${CPMOD:-cpmod} 2>/dev/null; then 
  cpmod=${CPMOD:-cpmod} 
  warn=""
fi

if test -z "$cpmod"; then 
  cpmod=touch 
  cpmodarg="-r"
  warn="(does not preserve file modes)"
fi

case "$GZIP" in                                                                  
  *-S*) ext=`echo "$GZIP" | sed 's/^.*-S[[:space:]]*\([^[:space:]]*\).*$/\1/'`   
       ;;                                                                        
  *-suffix*) ext=`echo "$GZIP" | sed 's/^.*--suffix=\([^[:space:]]*\).*$/\1/'`   
       ;;                                                                        
  *) ext='.gz'                                                                   
       ;;                                                                        
esac  
if test "$ext" = ".Z"; then
  echo znew: cannot use .Z as gzip extension.
  exit 1
fi

for arg
do
  case "$arg" in
  --help)      exec echo "$usage";;
  --version)   exec echo "$version";;
  -*)     opt="$opt $arg"; shift;;
   *)     break;;
  esac
done

if test $# -eq 0; then
  echo >&2 "$0: invalid number of operands; try \`$0 --help' for help"
  exit 1
fi

opt=`echo "$opt" | sed -e 's/ //g' -e 's/-//g'`
case "$opt" in
  *t*) check=1; opt=`echo "$opt" | sed 's/t//g'`
esac
case "$opt" in
  *K*) keep=1; check=1; opt=`echo "$opt" | sed 's/K//g'`
esac
case "$opt" in
  *P*) pipe=1; opt=`echo "$opt" | sed 's/P//g'`
esac
if test -n "$opt"; then
  opt="-$opt"
fi

for i do
  n=`echo $i | sed 's/.Z$//'`
  if test ! -f "$n.Z" ; then
    echo $n.Z not found
    res=1; continue
  fi
  test $keep -eq 1 && old=`wc -c < "$n.Z"`
  if test $pipe -eq 1; then
    if gzip -d < "$n.Z" | gzip $opt > "$n$ext"; then
      # Copy file attributes from old file to new one, if possible.
      test -n "$cpmod" && $cpmod $cpmodarg "$n.Z" "$n$ext" 2> /dev/null
    else
      echo error while recompressing $n.Z
      res=1; continue
    fi
  else
    if test $check -eq 1; then
      if cp -p "$n.Z" "$n.$$" 2> /dev/null || cp "$n.Z" "$n.$$"; then
        :
      else
        echo cannot backup "$n.Z"
        res=1; continue
      fi
    fi
    if gzip -d "$n.Z"; then
      :
    else
      test $check -eq 1 && mv "$n.$$" "$n.Z"
      echo error while uncompressing $n.Z
      res=1; continue
    fi
    if gzip $opt "$n"; then
      :
    else
      if test $check -eq 1; then
        mv "$n.$$" "$n.Z" && rm -f "$n"
        echo error while recompressing $n
      else
        # compress $n  (might be dangerous if disk full)
        echo error while recompressing $n, left uncompressed
      fi
      res=1; continue
    fi
  fi
  test $keep -eq 1 && new=`wc -c < "$n$ext"`
  if test $keep -eq 1 && test `expr \( $old + $block - 1 \) / $block` -lt \
                              `expr \( $new + $block - 1 \) / $block`; then
    if test $pipe -eq 1; then
      rm -f "$n$ext"
    else
      mv "$n.$$" "$n.Z" && rm -f "$n$ext"
    fi
    echo "$n.Z smaller than $n$ext -- unchanged"

  elif test $check -eq 1; then
    if gzip -t "$n$ext" ; then
      rm -f "$n.$$" "$n.Z"
    else
      test $pipe -eq 0 && mv "$n.$$" "$n.Z"
      rm -f "$n$ext"
      echo error while testing $n$ext, $n.Z unchanged
      res=1; continue
    fi
  elif test $pipe -eq 1; then
    rm -f "$n.Z"
  fi
done
exit $res

外壁塗装の塗り替えはなぜ必要なのかを徹底解説

外壁塗装の塗り替えはなぜ必要なのかを徹底解説

京都の外壁塗装業者ランキング
京都の外壁塗装業者を評判・口コミから厳選
  1. サイトトップ
  2.  ≫ 京都での外壁塗装業者選びで失敗しないために
  3.  ≫ 外壁塗装の塗り替えはなぜ必要なのかを徹底解説

このページでは「外壁塗装の塗り替えはなぜ必要なのかを徹底解説」をご紹介しています。

なぜ外壁塗装の塗り替えをしないといけないのか、皆さんはご存知でしょうか?
実際、よほど外壁の劣化が進んでいたり、ヒビ割れなど大きな不具合が起こっていない限り、「外壁塗装なんて必要無い」と考える方も多いのです。
しかし、適切なタイミングで塗り替えを行わなければ、大切なお住まいに今後甚大な被害が発生する恐れがあります。
ここでは、「外壁塗装の塗り替えはなぜ必要なのか?」についてご紹介します。

なぜ外壁塗装には塗り替えが必要なのか?

なぜ外壁塗装には塗り替えが必要なのか?

簡単に言えば、「最悪の場合、家が家としての機能を果たさず壊れてしまう」からです。
詳しくご説明します。

外壁塗装を行うと、塗膜によって外壁が守られている状態となります。
しかし、塗膜は半永久的に効果が続くものではなく、耐用年数という寿命が予め決められています。
耐用年数を超えてしまった塗膜は、耐久性や防水性といった外壁を守るための機能が経年と共に失われていくのです。

では、塗膜が機能を失えばどのようなことが起こるのでしょうか?

耐用年数を過ぎて塗膜が劣化してしまい、本来の機能を失った状態で放置するとします。
その放置している期間中、建物は雨風や紫外線などの自然環境に対して無防備な状態になっているのです。

この無防備な状態をさらに放置してしまうと、建物を形作る外壁そのものを著しく劣化させてしまいます。
外壁が劣化してしまえば、雨漏りの原因となったり建物全体の耐久性が大きく損なわれたりと、被害は家全体に及んでしまうのです。

ここまで劣化が進んでしまうと、雨漏り修理や家全体の修繕工事など、外壁塗装を行うよりさらに大掛かりな工事、大きな出費が必要となってしまいます。

大切なお住まいをこのような深刻な事態にさせないためにも、適切なタイミングで塗り替えを行うことが重要となります。
塗り替えを行うことで、塗料が本来持つ防水性や耐久性が復活し、次の耐用年数を迎えるまで過酷な自然環境から大切なお住まいを守ってくれるのです。

外壁塗装の主な塗り替え箇所

前項で外壁塗装の塗り替えがなぜ必要なのかをご説明しましたが、具体的には建物のどの箇所を塗り替えるのでしょうか?
ここでは、お住まいの中での主な塗り替え箇所、そして適した塗り替えの方法をご紹介します。

建物壁面

建物壁面

建物壁面とは、建物を覆う駆体部分のことで、一般的には外壁と総称される箇所です。
この建物壁面には「サイディング」「コンクリート」「モルタル」「ALC」など多くの外壁材が存在し、各材質ごとに適した塗料で塗り替えることで、より効果的に本来の機能を発揮します。
塗り替えを行うことで、雨風や紫外線などの自然環境から外壁を守ることができ、外壁によく起こるヒビ割れ(クラック)を防ぐことができるのです。

ヒビ割れが起こってしまうと、そこから雨水が建物内部へ侵入し、雨漏りを引き起こすリスクが高まります。
建物壁面は建物の中でも目につきやすい箇所なので、劣化の兆候が見られたらできる限り早く塗り替えを行いたい箇所です。

屋根

屋根

屋根の素材は主に瓦系と金属系に区分され、そのどちらかによって使用する塗料も塗り方も違ってきます。
瓦系の屋根は塗り替えによって、防水性・耐久性の復元、美観回復を目的とします。
一方、金属系の屋根は瓦系と同様に防水性・耐久性も復元させますが、同時にサビ止めを入れてサビ対策を行います。

屋根は、外壁以上に雨風や紫外線の影響を受ける箇所です。
屋根にしっかり防水性のある塗料で塗り替えを行えば、雨漏りに対して非常に有効な対策となるので、外壁同様に劣化を見つけたらすぐに塗り替えを行いたい箇所と言えます。

ベランダ

ベランダ

日本の平均的な戸建住宅のベランダは、手すりが鉄製、床がコンクリート、もしくはプラスチック製という造りが最も一般的です。
手すりは鉄なのでサビやすく、床は水はけが悪く水が溜まりやすいという特徴があるので、ベランダの塗り替えには防水塗装がほぼ必須と言えます。
手すりにはサビ止め、床には防水を施せば、サビ・コケ、カビ・雨水の浸食といったベランダを劣化させてしまう原因の発生を大幅に防ぐことができるのです。

京都で評判・口コミの良い外壁塗装業者ランキング

京都でのおすすめ優良外壁塗装業者
1位:株式会社ウェルビーホーム
京都で評判・口コミの良い外壁塗装業者ランキング|株式会社ウェルビーホーム
京都でのおすすめ優良外壁塗装業者
2位:株式会社 佐藤塗装店
京京都で評判・口コミの良い外壁塗装業者ランキング|株式会社 佐藤塗装店
京都でのおすすめ優良外壁塗装業者
3位:株式会社 伊藤建装
京都で評判・口コミの良い外壁塗装業者ランキング|株式会社 伊藤建装

【免責事項】当サイトは、管理人が個人的に情報収集した内容を基に作成しています。最新の情報は各サイトにお問い合わせください。

© 京都の外壁塗装で選ぶべき評判・口コミの良い業者ランキング.