Search Results

0
votes

using the passwd command from within a shell script

First: Are you certain your version of adduser or useradd doesn't have an option to pass it a passwd? Second: shell scripts don't work like that. You could (again depending on your syste …
0
votes

Best version control system for managing home directories

One way to handle this very flexibly is to have a build directory under revision control, not try and svn your actual home directory (which has its own issues) so inside this you keep a str …
0
votes

Peak memory usage of a linux/unix process

/usr/bin/time maybe does what you want, actually. Something like. /usr/bin/time --format='(%Xtext+%Ddata %Mmax)' See time(1) for details... …
0
votes

Linux: delete files that don’t contain specific number of lines

My command line mashing is pretty rusty, but I think something like this will work safely (change the "10" to whatever number of lines in the grep) even if your filenames have spaces in them. Adju …