knitr::opts_chunk$set(echo = TRUE)

Poll

http://dpll.co/17175e5


Fundamentals

Fundamentals

Networks

Storage

OS

PowerShell

The language for working with all things Microsoft these days.

Get-ChildItem | 
  Where Name -notlike "*.tar.gz" |
    Export-Csv "filelist.csv"

Import-Csv "filelist.csv"

Bash

The continued language of Linux

find . -maxdepth 1 ! -name '*.tar.gz' | 
  sed 's/[ \t]/,/g' > filelist.csv

cat filelist.csv

Call command line from R

Interactions are available from base package

?system  # not recommended
?system2 # works better with Windows too
?shell   # the lower level call

Windows / Linux file differences

Windows OS Variants


Next steps

Hard-won lessons

Wrap up

Windows links

Linux links

Misc. links



stephlocke/Rtraining documentation built on May 30, 2019, 3:36 p.m.