From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-0.1 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,FREEMAIL_FROM,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 21800 invoked from network); 21 Apr 2022 08:53:20 -0000 Received: from 9front.inri.net (168.235.81.73) by inbox.vuxu.org with ESMTPUTF8; 21 Apr 2022 08:53:20 -0000 Received: from mail-lf1-f45.google.com ([209.85.167.45]) by 9front; Thu Apr 21 04:51:25 -0400 2022 Received: by mail-lf1-f45.google.com with SMTP id w1so7457641lfa.4 for <9front@9front.org>; Thu, 21 Apr 2022 01:51:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=mime-version:references:in-reply-to:from:date:message-id:subject:to; bh=ZbzdF3/eNug62YgQcefcSLk4dPSXhDF6gY8CJn+xHpA=; b=VM7tic/Xl4+KajQIhc7ODfDiTCRDp/lxUs7ujS/TJzY6PB6xTW2ZqU8/avCJUz+19c tY5/qqM4ZbffaSA1PsZJc/LezPP6AZ0577xxxSXJkFGTNhkSwTyPwwaFWkEQkGlKpBZ1 3rZPyhP4Pb0zVCt/1u7DfnW4VCOr5mDkmnUN4ih6ZkZ1b97Ti3bNFbfcR5H4rB37q4VJ IGzxx6AbXKE/mi7Y63sSGod2csn4Mvpdm6DcdTNzJRfNSveomOMJJ11m5zssPL831vib J4JO+PCN0C0wonzTIm8ujLoYk/8xDNXBYMvOTaPjHEHwEVU0sCdmKUBa7jWLJrwq6IsQ MR2Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to; bh=ZbzdF3/eNug62YgQcefcSLk4dPSXhDF6gY8CJn+xHpA=; b=CaWLiMufBzP2TJSqIRpd11RBlcMnLHPQbYfFs6Zy/blVYGpwgeeai2rIquw6RgB+aj sFgbwt6P7opP6OuN2bWVjGxuUaPL02fKIIAHHXIGZefZ+6d4khcTFZOoFCIS56N1oGl6 PWU4agchZ7OMicBA7W4Uff5958Ma7NmvSmBVVrAycxSWYjaBvlTX7ruiL7SKtX4+exTs X7qRf6ZkF/W+W0SdUwYx0pvFly5ITgFrm1Ly2dOoGNxXwURiwaMD1RU7cWFyrDmdPvOH 88wa9LMAatqYOYzImJ00Sb6LSAd6OklUTLYQAUxm2I/7battLtd6lH1jBIm/PEHjaKu0 SxSg== X-Gm-Message-State: AOAM5333yHb7P1GdOBBrrNNRgclSSG9gGk6FE8rT+RdkNtgva/TSATSC nO8I3HgWhoBdzIWOyueIDVjQ+UrxmAXonW7JBoMGyGtQvZc= X-Google-Smtp-Source: ABdhPJzu11FNsm27tKqS2Pkf+A3ECJbuUiB80kRgaPfbdbgGspEjyYmBFHmy0Kq+h/i6Bpe+VsGFBlAzHh/jRPWGajo= X-Received: by 2002:a05:6512:e8f:b0:44a:bf22:89c8 with SMTP id bi15-20020a0565120e8f00b0044abf2289c8mr17062847lfb.323.1650531079842; Thu, 21 Apr 2022 01:51:19 -0700 (PDT) MIME-Version: 1.0 References: <87tuazv7om.fsf@turtle-trading.net> <87r15rwyig.fsf@turtle-trading.net> In-Reply-To: From: Sean Hinchee Date: Thu, 21 Apr 2022 01:51:09 -0700 Message-ID: To: 9front@9front.org Content-Type: text/plain; charset="UTF-8" List-ID: <9front.9front.org> List-Help: X-Glyph: ➈ X-Bullshit: encrypted component firewall-based NoSQL firewall interface Subject: Re: [9front] Re: Update system: Difference "mk nuke" and "mk clean"? Reply-To: 9front@9front.org Precedence: bulk If you read the template mkfiles in /sys/src/cmd/ you can see the difference between 'clean' and 'nuke': for system libs: http://git.9front.org/plan9front/plan9front/70e2b4f7ec6b225ae69a6e76dd025e1be0e0e8b1/sys/src/cmd/mksyslib/f.html for individual programs: http://git.9front.org/plan9front/plan9front/70e2b4f7ec6b225ae69a6e76dd025e1be0e0e8b1/sys/src/cmd/mkone/f.html As sirjofri states, nuke will delete library targets and more files than clean will. To find out which template a given mkfile uses, refer to lines such as: wrote: > > Hello, > > Afaik clean should just clean stuff in /sys/src while nuke also deletes > library files in /$objtype/. At least, nuke touches stuff outside > /sys/src. > > Hope this helps > > sirjofri