Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: 오타 수정

...

Code Block
languagebash
function Qxmllint {
        if [ $# != 1 ]; then
                echo "parameter need!";
        else
                cp $1 ${1}.org
                /usr/bin/xmllint --format --recover ${1}.org > ${1}
        fi;
}

See Also

...