Download packages
Introduction
We will install to /usr/local/share/texmf
. Check that this matches the definition of TEXMFLOCAL
in your installation:
-inurl:htm -inurl:html intitle:"index of" +("/ebooks") +(pdf|zip) +"wiley" | |
-inurl:htm -inurl:html intitle:"index of" mp3 Iron maiden | |
-inurl:htm -inurl:html intitle:"index of" mp3 Metallica | |
-inurl:htm -inurl:html intitle:"index of" "Last modified" mp3 |
Download packages
Introduction
We will install to /usr/local/share/texmf
. Check that this matches the definition of TEXMFLOCAL
in your installation:
Find & Copy
find /path/to/find -name '*.txt' -exec cp {} /new/path \;
Find & Handling Spaces in File Names
find . -print0 | xargs -0
var gulp = require('gulp'); | |
var sass = require('gulp-sass'); | |
var postcss = require('gulp-postcss'); | |
var autoprefixer = require('autoprefixer'); | |
var cssnano = require('cssnano'); | |
var sourcemaps = require('gulp-sourcemaps'); | |
var sass_src_file = 'assets/scss/hyde-hyde.scss'; | |
var output_folder = 'static/css'; | |
var watched_resources = 'assets/scss/**/*'; |
{ | |
"scripts": { | |
"scss-build": "gulp scss", | |
"scss-watch": "gulp watch", | |
"hugo-watch": "hugo server -w --buildDrafts --cleanDestinationDir", | |
"dev": "npm-run-all --parallel scss-watch hugo-watch" | |
}, | |
"devDependencies": { | |
"autoprefixer": "^9.0.0", | |
"cssnano": "^4.0.3", |
const gulp = require('gulp'); | |
const sass = require('gulp-sass'); | |
const postcss = require('gulp-postcss'); | |
const autoprefixer = require('autoprefixer'); | |
const cssnano = require('cssnano'); | |
const sourcemaps = require('gulp-sourcemaps'); | |
const log = require('fancy-log'); | |
const sassSourceFile = 'assets/scss/hyde-hyde.scss'; | |
const outputFolder = 'static/css'; |
/* | |
* https://github.com/StylishThemes/GitHub-Dark/issues/197#issuecomment-63095957 | |
*/ | |
.pl-coc /* constant.other.color */, | |
.pl-entl /* entity.name.tag.label */, | |
.pl-entm /* entity.name.type.module */, | |
.pl-eoa /* entity.other.attribute-name */, | |
.pl-mai .pl-sf /* meta.at-rule.include support.function */, | |
.pl-mm /* meta.module-reference */, | |
.pl-pdv /* punctuation.definition.variable */, |