Home
Posts
Talks
Publications
Projects
Contact
CV
output
Tip of the Day: Automate Google Lighthouse Tests on Your Netlify Build Pipeline
Google Lighthouse is an automation tool for auditing and improving the quality of web pages. Measured metrics include performance, accessibility, SEO, and best practices. It also has a CLI app for command line automation.
Last updated on Apr 17, 2021
2 min read
Count the Number of Files in a Directory
ls -l | wc -l ls: list directory contents -l: list in long format wc: word, line, character, and byte count -l: the number of lines is written to the standard output This command counts the number of listed lines.
Last updated on Apr 17, 2021
1 min read
Count the Number of Words in a LaTeX Document
detex my-document.tex | wc -w detex: a filter to strip TeX commands from a .tex file wc: word, line, character, and byte count -w: The number of words in each input file is written to the standard output
Last updated on Apr 17, 2021
1 min read
Cite
×