bash - Is there a way to pause the make process and resume later? -
i pause build process , shutdown laptop , sleep while , resume later.now i've found linux command 'fg' work me. i'm not sure of how it's used , whether work in case( want pause 'make' , shutdown system).
thanks in advance
first of all, makefiles intended, almost, want: should build missing or not up-to-date parts of project. so, if have project made 100 files, , start build process, , after compilation of 50 files build gets interrupted, on next build invocation process should restart, more or less, interrupted. happens if makefile written well, , nobody issues "make clean", of course.
then talk fg command, purpose different want: if shutdown computer, programs stopped (and not restart automatically). may can hibernate laptop and, if yes, don't need further precautions.
Comments
Post a Comment