bcdata

(★ 87)

An R package for searching & retrieving data from the B.C. Data Catalogue

File Explorer

  • .gitattributes
  • .gitignore
  • .Rbuildignore
  • _pkgdown.yml
  • air.toml
  • bcdata.Rproj
  • CODE_OF_CONDUCT.md
  • codecov.yml
  • COMPLIANCE.yaml
  • CONTRIBUTING.md
  • cran-comments.md
  • DESCRIPTION
  • LICENSE.md
  • NAMESPACE
  • NEWS.md
  • README.md
  • README.Rmd

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

select

View Details ▼

Bash builtin construct for creating menus.

select {{word}} in {{apple orange pear banana}}; do echo ${{word}}; done

Create a menu out of individual words:

select {{line}} in $({{command}}); do echo ${{line}}; done

Create a menu from the output of another command:

PS3="{{Select a file: }}"; select {{file}} in *; do echo ${{file}}; done

Specify the prompt string for `select` and create a menu for picking a file or folder from the current directory:

// repository documentation