BOOM Analytics: Exploring Data-Centric, Declarative Programming for the Cloud
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkg <- "myDir/file_1.0.0.tar.gz" | |
install.packages(pkg, repos=NULL, type="source") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> cat search.log | awk '{ print $1 }' | grep [24680]$ | wc -l # Count even numbers | |
> cat search.log | awk '{ print $1 }' | grep [13579]$ | wc -l # Count odd numbers |