Skip to content

Commit 3dd59c5

Browse files
committed
adds quarto/download_install_quart.bash V1.7.34
1 parent 5731ed3 commit 3dd59c5

3 files changed

Lines changed: 27 additions & 0 deletions

File tree

quarto/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# Quarto
22
> An open-source scientific and technical publishing system [https://quarto.org/]
33
4+
## Installation
5+
```bash
6+
bash download_install_quart.bash
7+
```
8+
* Check
9+
```bash
10+
quarto check
11+
```
412
## Templates
513
* Listing: http://mxochicale.github.io/tools/
614

quarto/download_install_quart.bash

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
VERSION=1.7.34
3+
mkdir -p ~/opt && cd ~/opt
4+
wget https://github.com/quarto-dev/quarto-cli/releases/download/v$VERSION/quarto-$VERSION-linux-amd64.tar.gz
5+
tar -C ~/opt -xvzf quarto-$VERSION-linux-amd64.tar.gz
6+
mkdir -p ~/.local/bin
7+
ln -s ~/opt/quarto-$VERSION/bin/quarto ~/.local/bin/quarto
8+
( echo "# local/bin/quarto from ln -s /opt/quarto*"; echo 'export PATH=$PATH:~/.local/bin' ; echo "" ) >> ~/.bashrc
9+
source ~/.bashrc
10+
rm quarto-$VERSION-linux-amd64.tar.gz
11+

quarto/logs.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Logs
2+
3+
4+
## Sat 6 Sep 21:37:40 BST 2025
5+
1.7.34
6+
7+
## Sometime in March 2025
8+
1.5.57

0 commit comments

Comments
 (0)