- 0 Posts
- 42 Comments
friend_of_satan@lemmy.worldto Linux@lemmy.ml•Is there an easy way to filter all terminal commands that contain a --help flag?English5·1 month agoset -x
configures the running process, your shell. This is a posix standard flag. See https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.htmlthere has to be a hook somewhere for every command that executes
Why do think this? I’m not aware of any shells that have such a feature. I’m not saying it couldn’t be done, but it would be a new feature.
I like the other suggestion of having a wrapper script that does what you need.
Marcan and Lina are listed separately on the about page. https://asahilinux.org/about/
friend_of_satan@lemmy.worldto Linux@lemmy.ml•only classic linuxers will recognize this logo..English1·3 months agodeleted by creator
friend_of_satan@lemmy.worldto Linux@lemmy.ml•only classic linuxers will recognize this logo..English8·3 months agoThe origin of
yum
, the Yellowdog Updater Modified.
friend_of_satan@lemmy.worldto Linux@lemmy.ml•Apparently, 12% of Technology Workers Believe that MacOS is based on LinuxEnglish17·3 months agomacOS may not be FreeBSD, but is definitely is a BSD. https://en.wikipedia.org/wiki/History_of_Unix#/media/File:Unix_history-simple.svg
deleted by creator
friend_of_satan@lemmy.worldto Linux@lemmy.ml•After almost half a century, I'm still doing it...English1·3 months agoThat is a totally fair explanation. End of story. No blame. Honest mistake.
friend_of_satan@lemmy.worldto Linux@lemmy.ml•After almost half a century, I'm still doing it...English8·3 months agoI’ve done this kind of thing remotely in screen with
ifdown eth0 ; sleep 10 ; ifup eth0 ;
friend_of_satan@lemmy.worldto Linux@lemmy.ml•Passing the torch on Asahi Linux - Asahi LinuxEnglish1·3 months agoThe G4 had a hardware bit rotate function, and a 128 bit bus, meaning it could do 4 32-bit bit rotates per clock cycle. the Intel Pentium 4 needed to emulate that one instruction over 4 CPU cycles, and had a 32-bit bus. This made the G4 orders of magnitude faster than the top Intel chip at the time at certain tasks, like cracking rc5 on distributed.net, where G4 clusters absolutely dominated the top ranks.
Our peak rate of 270,147,024 kkeys/sec is equivalent to 32,504 800MHz Apple PowerBook G4 laptops or 45,998 2GHz AMD Athlon XP machines - https://blogs.distributed.net/2002/09/25/00/00/bovine/
Apple has been known to release powerful hardware.
friend_of_satan@lemmy.worldto Linux@lemmy.ml•Passing the torch on Asahi Linux - Asahi LinuxEnglish5·3 months agoReally?
According to Hector Martin (Asahi Linux developer) making things easier for Linux developers is the only known reason Apple would have added this.
friend_of_satan@lemmy.worldto Linux@lemmy.ml•Is it me or Ubuntu secretly replaces DEB Firefox with Snap Firefox?English18·4 months agoWelcome to 2020, where Debian is once again your trusted distro.
friend_of_satan@lemmy.worldto Linux@lemmy.ml•What's a unique customization on your Linux machine you think no one else has?English4·4 months agoI have the same type of thing. An alias that creates a tempdir that is based on the date, then cd’s into it. Then a cron job that finds dirs that are older then N days old and deletes them. I use these for most of my scratch work. Having several days to look back at what you did and know when you did it is so nice.
friend_of_satan@lemmy.worldto Linux@lemmy.ml•Maybe Lemmy can forcibly invent a new term for "ricing". (Good faith pls)English3·4 months agoIs “ricing” not originally related to customised cars from street racing or something?
It is not, as I learned 18d ago https://lemmy.blahaj.zone/comment/12165688
Riced out is an adjective denigrating a badly customized sports car, “usually with oversized or ill-matched exterior appointments”. … Examples of “rice burner” used literally, meaning one who burns rice or rice fields, as in stubble burning, date to 1917. In 1935 it appeared in a US newspaper caption with a racial connotation, disparaging East Asian people. … In some cases, users of the term assert that it is not offensive or racist, or else treat the term as a humorous, mild insult rather than a racial slur.
friend_of_satan@lemmy.worldto Linux@lemmy.ml•So what the boink is Bazzite "cloud native" blah?English43·5 months agoIt says it’s a tautology because it’s a tautology.
friend_of_satan@lemmy.worldto Linux@lemmy.ml•Which Linux tool or command is surprisingly simple, powerful, and yet underrated?"English1·5 months agoI did not! Interesting feature.
friend_of_satan@lemmy.worldto Linux@lemmy.ml•Which Linux tool or command is surprisingly simple, powerful, and yet underrated?"English30·5 months agoNot powerful, but often useful,
column -t
aligns columns in all lines. EG$ echo {a,bb,ccc}{5,10,9999,888} | xargs -n3 a5 a10 a9999 a888 bb5 bb10 bb9999 bb888 ccc5 ccc10 ccc9999 ccc888 $ echo {a,bb,ccc}{5,10,9999,888} | xargs -n3 | column -t a5 a10 a9999 a888 bb5 bb10 bb9999 bb888 ccc5 ccc10 ccc9999 ccc888
friend_of_satan@lemmy.worldto Linux@lemmy.ml•Which Linux tool or command is surprisingly simple, powerful, and yet underrated?"English2·5 months agoI’ve switched from using
dd
to usingpv
to write disk images to removable media.
deleted by creator