files
one-liners (mostly) to manage files
create subdirectory for each file
merge files and add filename to text
find and delete
(-i interactive)
find files (.pl.) and count words
find the newest file recursively
(supports filenames with spaces). Performance improved with xargs
:
find image files in directory
or simply by extension (-iname for case insensitive seach)
windows gitbash version:
or just all contents of images/ dirs
find images in html files:
find images in markdown files:
count files in subdirectories
mindepth and maxdepth to only check immediate descendants. add -name e.g "*.md" etc to only count certain filetype
batch rename files
Last updated