Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 362 Bytes

README.md

File metadata and controls

11 lines (7 loc) · 362 Bytes

Odds and ends

A collection of random files and commands preserved for reference and posterity. May or may not be helpful.

BASH

When sharing files with Windows and Mac colleagues one frequently encounters files with an abundace of spaces in the name. Replace them with underscores in the local directory using

ls | grep " " | rename 's/ /_/g'