Skip to main content

All Questions

1 vote
0 answers
25 views

How do I delete all folders with a similar name that do not contain large files on linux commandline?

On my linux server for my media library I used a function to change show season names to have a leading zero when needed, so "Season 1" would be Season 01" and so on. The problem is ...
Graham F's user avatar
0 votes
0 answers
42 views

How to use cmd to move files out of redundant subfolder?

I have a large number of textfiles that are nested in subdirectories like this: D:\datafiles_01\01_data\data\{bunchoftextfiles} \... \42_data\{...
Nedimar's user avatar
0 votes
1 answer
197 views

Copy files from folders which contain less than a number of files

Coming from Bash: Find folders with less than x files find . -type d -exec sh -c 'set -- "$0"/*.flac; ! [ -e "$1" ]' {} \; -print How do I extend the line to now recurse through the resulting list ...
foax's user avatar
  • 38