소스 검색

v2.3.4 readme updates

master
부모
커밋
d8cc1e51c0
1개의 변경된 파일29개의 추가작업 그리고 1개의 파일을 삭제
  1. +29
    -1
      README.md

+ 29
- 1
README.md 파일 보기

@@ -415,13 +415,41 @@ sudo yum install imagemagick pdfinfo
```
brew install imagemagick xpdf
```
## Clone using git
```
git clone https://github.com/tavinus/pdfScale.git
cd ./pdfScale
./pdfScale.sh --version
```
## Run installer using `curl` or `wget`
#### wget oneliners
```bash
# Normal install with prompts
wget -q -O /tmp/pdfScale.sh 'https://raw.githubusercontent.com/tavinus/pdfScale/master/pdfScale.sh' && bash /tmp/pdfScale.sh --install

# Automated install with --assume-yes
wget -q -O /tmp/pdfScale.sh 'https://raw.githubusercontent.com/tavinus/pdfScale/master/pdfScale.sh' && bash /tmp/pdfScale.sh --install --assume-yes

# To ignore SSL, use --no-check-certificate
wget --no-check-certificate -q -O /tmp/pdfScale.sh 'https://raw.githubusercontent.com/tavinus/pdfScale/master/pdfScale.sh' && bash /tmp/pdfScale.sh --install
```
#### curl oneliners
```bash
# Normal install with prompts
curl -s -o /tmp/pdfScale.sh 'https://raw.githubusercontent.com/tavinus/pdfScale/master/pdfScale.sh' && bash /tmp/pdfScale.sh --install

# Automated install with --assume-yes
curl -s -o /tmp/pdfScale.sh 'https://raw.githubusercontent.com/tavinus/pdfScale/master/pdfScale.sh' && bash /tmp/pdfScale.sh --install --assume-yes

# To ignore SSL, use --insecure
curl --insecure -s -o /tmp/pdfScale.sh 'https://raw.githubusercontent.com/tavinus/pdfScale/master/pdfScale.sh' && bash /tmp/pdfScale.sh --install
```
#### Remove /tmp/pdfScale.sh ater done
```bash
rm /tmp/pdfScale.sh
```

## Self-Install
Since `v2.3.0` *pdfScale* can install itself using the parameter `--install`.


불러오는 중...
취소
저장