home.social

#csh — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #csh, aggregated by home.social.

  1. lolcat tricks and fun

    In case you have ever wondered what it would look like to have all of your favourite console output piped through lolcat(6) 🏳️‍🌈, here is a nice example

    required (one of *sh is enough)

    • Open Source OS
    • sh
    • csh
    • ksh
    • zsh
    • bash
    • fish
    • syntax skills on piping I/O
    • love of colours
    • typing skills
    • sense of humour

    typing
    man lolcat

    ...will get you the standard sh output delimited by the man command itself. This means that I used a simple trick to get all of my output piped through lolcat

    ssh -Xv -p65534 -l userid |lolcat

    This command syntax gets all of my commands in that ssh session piped through lolcat, creating an awsome rainbow colour galore

    notes

    • ssh secure session piped through lolcat gets you a slower output, compliments of the inner workings of lolcat. Feel free to optimize the program and release the patches if the lowerspeed irks you.
    • test the speed by doing
    • ls -lR ~ and compare that in a standard ssh sessios without full lolcat pipe
    • I used the -X switch because I also start X programs from this shell (which I run in Xorg {it also works in wayland})
    • I use the -v switch because I love log messages of ssh
    • you can also animate your piped lolcat output with
    • lolcat -a
    • I watch the output on a large TV also, because lolcat(6) 🏳️‍🌈 is that awsome

    sources:

    lolcat --help

    man lolcat(6) 🏳️‍🌈

    github.com/busyloop/lolcat

    man man(1)

    #programming #rainbow #sh #csh #ksh #zsh #bash #fish #lolcat #man #manpages #OpenSource #Linux #BSD #POSIX #TV

  2. This is a crucial program on my Android devices. The more Open Source communication software I use the more I need Open Source notification systems; this works flawless

    @Radio_Azureus

  3. Termux

    If you want a nice to great full linux stack for your android, seek for Termux.

    do not install the playstore version!

    Alphabet {google} sabotages OpenSource projects on Android. Get termux straight from the home page

    Termux is a full linux ENV:

    termux installs minimal

    • download
    • shell spawns with instructions
    • you have to follow them!!!
    • once familiarized (easy when you know Debian)
    • start your commands, install them individually if their'e not in the default install
    • enjoy a free Linux ENV: in the hostile (google) Android ENV
    • keyboard assistance is at the bottom of the bash window
    • CTRL
    • ALT
    • cursors
    • PaGeUP
    • PaGeDOWN
    • Home
    • End
    • Esc
    • /
    • -
    • tab
    • are all keys to assist you in fluent linux sh typing
    • you may install any sh supported in linux bash csh ksh zsh fish

    caveats

    • There are a few, however you will still be able to work there
    • check your internal ssd space, termux works there by default
    • filesizes can be surprising
    • I just install Midnight Commander on one of my Androids and the supporting libs (including clang took a massive 540MiB while mc itself is small)
    • I only noticed because on a default debian install those libs are already there for other elf binaries
    • on the Slitaz distro those libs are also installed, when mc is invoked / installed

    Termux is Linux joy on Android

    #termux #linux #programming #technology #bash #csh #ksh #zsh #sh #networking

  4. I still want to get rid of Photoshop and move to @Krita .

    One thing I was missing were the vector shapes. So here is a Python program that converts Photoshop csh and psp files to Krita svg shapes.

    It comes as a plugin and as a standalone Python file with a TKInter UI. Tested on Windows and MacOS.

    Here's the plugin:
    codeberg.org/xanathon/csh2krita

    Extensive readme in the repository.

    #Photoshop #Krita #plugin #csh #psp #VectorShapes #SymbolLibraries #OpenSource #FOSS

  5. Thank you for the reaction

    Regretfully I have to inform you that your detector is flawed. Any errors and mistakes you've found are all from my brains.

    Have a wonderful day

    @evgandr

    #curl #programming #mathematics #linear #algebra #libcurl #Linux #BSD #freeBSD #openBSD #netBSD #POSIX #bash #csh #ksh #sh #fish #radio #TV #smartTV #router

  6. curl

    Daniël Stenberg

    facts and praise

    I'm fortunate that I am allowed to follow Daniël, lead programmer of the mightycurl. The reason I formulated the line in this way, is because only through the power of the FediVerse I've gotten a boost from someone I follow, who found a post of the lead programmer or curl interesting

    stats:

    install base => 20000*106 devices

    20 billion+ installations!

    curl is used in command lines or scripts to transfer data. curl is also libcurl, used in:

    • cars
    • television sets
    • routers
    • printers
    • audio equipment
    • mobile phones
    • tablets
    • medical devices
    • settop boxes
    • computer games
    • media players

    Curl is THE Internet transfer engine for countless software applications in over twenty billion installations!

    curl is used daily by virtually every Internet-using human on the globe!

    curl is 30 years old

    Let that sink in!

    Opinion

    curl is mature critical network infrastructure software that we all need to have our internet powered software / hardware to function in respect to data transfer.

    The syntax to use curl in simple implementations is IMHO quite easy. In case you need to know an extra option, the executable and libcurl have excellent documentation. End users normally interact with curl using the (elf) binary on Linux based POSIX operating systems. The more mature BSDs have another binary format

    Just type curl to get an initial output which looks like this on my current system

    curl
    curl: try 'curl --help' or 'curl --manual' for more information

    then type

    curl --help
    Usage: curl [options...] <url>
    -d, --data <data> HTTP POST data
    -f, --fail Fail fast with no output on HTTP errors
    -h, --help <subject> Get help for commands
    -o, --output <file> Write to file instead of stdout
    -O, --remote-name Write output to file named as remote file
    -i, --show-headers Show response headers in output
    -s, --silent Silent mode
    -T, --upload-file <file> Transfer local FILE to destination
    -u, --user <user:password> Server user and password
    -A, --user-agent <name> Send User-Agent <name> to server
    -v, --verbose Make the operation more talkative
    -V, --version Show version number and quit

    This is not the full help; this menu is split into categories.
    Use "--help category" to get an overview of all categories, which are:
    auth, connection, curl, deprecated, dns, file, ftp, global, http, imap, ldap, output, pop3, post, proxy,
    scp, sftp, smtp, ssh, telnet, tftp, timeout, tls, upload, verbose.
    Use "--help all" to list all options
    Use "--help [option]" to view documentation for a given option

    When you type curl --manual|less you get the manpages which I delimited with less through a vertical pipe

              _   _ ____  _
    ___| | | | _ \| |
    / __| | | | |_) | |
    | (__| |_| | _ <| |___
    \___|\___/|_| \_\_____|
    NAME

    curl - transfer a URL

    SYNOPSIS

    curl [options / URLs]

    DESCRIPTION

    curl is a tool for transferring data from or to a server using URLs. It
    supports these protocols: DICT, FILE, FTP, FTPS, GOPHER, GOPHERS, HTTP,
    HTTPS, IMAP, IMAPS, LDAP, LDAPS, MQTT, POP3, POP3S, RTMP, RTMPS, RTSP,
    SCP, SFTP, SMB, SMBS, SMTP, SMTPS, TELNET, TFTP, WS and WSS.

    curl is powered by libcurl for all transfer-related features. See
    libcurl(3) for details.

    URL

    The URL syntax is protocol-dependent. You find a detailed description in
    RFC 3986.

    I can also type man curl to get a nice output:

    curl(1)                                         curl Manual                                        curl(1)

    NAME
    curl - transfer a URL

    SYNOPSIS
    curl [options / URLs]

    DESCRIPTION
    curl is a tool for transferring data from or to a server using URLs. It supports these protocols:
    DICT, FILE, FTP, FTPS, GOPHER, GOPHERS, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, MQTT, POP3, POP3S,
    RTMP, RTMPS, RTSP, SCP, SFTP, SMB, SMBS, SMTP, SMTPS, TELNET, TFTP, WS and WSS.

    curl is powered by libcurl for all transfer-related features. See libcurl(3) for details.

    URL
    The URL syntax is protocol-dependent. You find a detailed description in RFC 3986.

    If you provide a URL without a leading protocol:// scheme, curl guesses what protocol you want. It
    then defaults to HTTP but assumes others based on often-used hostname prefixes. For example, for
    hostnames starting with "ftp." curl assumes you want FTP.

    You can specify any amount of URLs on the command line. They are fetched in a sequential manner in
    the specified order unless you use -Z, --parallel. You can specify command line options and URLs
    Manual page curl(1) line 1 (press h for help or q to quit)

    The reasoning behind curl --manual is simple. On a machine without the manual system you still need access to the full manual. This is one of the reasons why man curl is also implemented as curl --manual

    An important RFC is echoed to my terminal in the man curl output which is RFC 3986

    A Uniform Resource Identifier (URI) is a compact sequence of
    characters that identifies an abstract or physical resource. This
    specification defines the generic URI syntax and a process for
    resolving URI references that might be in relative form, along with
    guidelines and security considerations for the use of URIs on the
    Internet. The URI syntax defines a grammar that is a superset of all
    valid URIs, allowing an implementation to parse the common components
    of a URI reference without knowing the scheme-specific requirements
    of every possible identifier. This specification does not define a
    generative grammar for URIs; that task is performed by the individual
    specifications of each URI scheme.

    I shall not quote the whole RFC 3986 here. You can read all about it on the RFC site (see sources)

    As you can see curl is thorougly documented, has all the features a simple end user needs to fetch all kind of data, scaled up all the way to the extensive complex features router hardware et all, needs to transfer data.

    programming route

    I came to this toot when I saw that certain external feature code, which lives in stable external libraries, is now being removed from curl. I should say the code is depreciated then phased out.

    This is a logical step

    • It takes resources to maintain external code
    • If the (shared) libraries are stable and mature, it's much better to just call those libraries and be done.
    • The more external code you can remove from your project the better it is for all the programmers

    The same is also happening in the Linux kernel, they are following in the footsteps of curl

    Conclusion

    There is a treasure trove of information in the sources. Just reading the pages on RFC 3986 will keep you occupied for hours.
    Have fun and keep reading / learning and programming!

    sources:

    curl.se/

    rfc-editor.org/rfc/rfc3986

    curl.se/mail/lib-2026-03/0026.

    #curl #programming #mathematics #linear #algebra #libcurl #Linux #BSD #freeBSD #openBSD #netBSD #POSIX #bash #csh #ksh #sh #fish #radio #TV #smartTV #router

  7. @josevnz

    Looks complex. (-:

    C shell:

    % printf '%s\n' $path

    Z shell:

    % printf '%q\n' "$path[@]"

    #UnixShells #CShell #ZShell #zsh #csh

  8. docs.ntfy.sh/install/

    debian

    sudo mkdir -p /etc/apt/keyrings
    sudo curl -L -o /etc/apt/keyrings/ntfy.gpg https://archive.ntfy.sh/apt/keyring.gpg
    sudo apt install apt-transport-https
    echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/ntfy.gpg] https://archive.ntfy.sh/apt stable main" \
    | sudo tee /etc/apt/sources.list.d/ntfy.list
    sudo apt update
    sudo apt install ntfy
    sudo systemctl enable ntfy
    sudo systemctl start ntfy

    #ntfy #notifications #programming #Android #Linux #sh #bash #csh #ksh #zsh #fish #curl #http #javascript #golang #powershell #python #php #technology #OpenSource #POSIX

  9. TIL today I RTFM!

    command

    ntfy

    Today I read the brief synopsis of ntfy Android. I saw there that via linux the control and operation is fairly simple & straightforward

    I went to the site and started reading.

    ntfy via linux is easy to use

    • simple HTTP PUT/POST commands are used

    sh

    curl -d "Backup successful 😀" ntfy.sh/mytopic

    a.out

    ntfy publish mytopic

    "Backup successful 😀"

    HTML

    POST /mytopic HTTP/1.1
    Host: ntfy.sh

    Backup successful 😀

    javascript

    fetch('https://ntfy.sh/mytopic', {
    method: 'POST', // PUT works too
    body: 'Backup successful 😀'
    })

    golang

    http.Post("https://ntfy.sh/mytopic", "text/plain",
    strings.NewReader("Backup successful 😀"))

    python

    requests.post("https://ntfy.sh/mytopic",
    data="Backup successful 😀".encode(encoding='utf-8'))

    php

    file_get_contents('https://ntfy.sh/mytopic', false, stream_context_create([
    'http' => [
    'method' => 'POST', // PUT also works
    'header' => 'Content-Type: text/plain',
    'content' => 'Backup successful 😀'
    ]
    ]));

    Markdown formatting¶

    Supported on Android & webApp

    You can format messages using Markdown 🤩. That means you can use bold text, italicized text, links, images, and more. Supported Markdown features (web app only for now):

    Emphasis such as bold (bold), italics (italics)
    Links (some tool)
    Images (![some image](bing.com/logo.png))
    Code blocks (code blocks) and inline code (inline code)
    Headings (# headings, ## headings, etc.)
    Lists (- lists, 1. lists, etc.)
    Blockquotes (> blockquotes)
    Horizontal rules (---)

    Read more on

    docs.ntfy.sh/publish/#markdown

    Sources:

    docs.ntfy.sh/

    docs.ntfy.sh/install/

    docs.ntfy.sh/publish/#markdown

    #ntfy #notifications #programming #Android #Linux #sh #bash #csh #ksh #zsh #fish #curl #http #javascript #golang #powershell #python #php #technology #OpenSource #POSIX

  10. Current weather in Kwamalasemutu SR SA with the grace of wttr.in curl {ba{c{k{z{fi}}}}}sh and the cool lolcat

    Background photograph a Sluis (NL) composed Sepia in Commewijne SR SA

    >> log

    $ curl --verbose wttr.in/kwamalasemutu|lolcat
    % Total % Received % Xferd Average Speed Time Time Time Current
    Dload Upload Total Spent Left Speed
    0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0* Trying 5.9.243.187:80...
    * Connected to wttr.in (5.9.243.187) port 80 (#0)
    > GET /kwamalasemutu HTTP/1.1
    > Host: wttr.in
    > User-Agent: curl/7.88.1
    > Accept: */*
    >
    < HTTP/1.1 200 OK
    < Access-Control-Allow-Origin: *
    < Content-Length: 9156
    < Content-Type: text/plain; charset=utf-8
    < Date: Sun, 15 Feb 2026 22:26:13 GMT
    <
    { [2569 bytes data]
    100 9156 100 9156 0 0 7320 0 0:00:01 0:00:01 --:--:-- 7318
    * Connection #0 to host wttr.in left intact

    ^Z

    #weather #wttr #curl #libcurl #programming #technology #bash #csh #ksh #zsh #fish #sh #networking #http #ports #OpenSource #POSIX #Physics #Chemistry #Lineair #Algebra #Mathematics #Logic #Mobile #Kwamalasemutu

  11. Current weather for Marienburg SR / SA utilizing forza magnífico of wttr.in curl {ba{c{k{z{sh}}}}} and the sublime lolcat

    Photograph in background composed with DSLR Nikon using FL Circular Polarizer 81A warming and of course Universal Love

    #weather #curl #wttr #bash #csh #ksh #zsh #lolcat #technology #OpenSource #SR #SA #Marienburg #Commewijne #Universal #Love #UniversalLove

  12. Current weather for Peperpot SR / SA utilizing the magnífico power of wttr.in curl {ba{c{k{z{sh}}}}} and lolcat

    Photograph composed with DSLR Nikon using FL Circular Polarizer 81A warming and Universal Love

    #weather #curl #wttr #bash #csh #ksh #zsh #lolcat #technology #OpenSource #SR #SA #Marienburg #Commewijne #Universal #Love #UniversalLove

  13. Current weather for Marienburg SR / SA utilizing the awsome power of wttr.in curl {ba{c{k{z{sh}}}}} and lolcat

    Photograph composed with DSLR Nikon using FL Circular Polarizer 81A warming and Universal Love

    #weather #curl #wttr #bash #csh #ksh #zsh #lolcat #technology #OpenSource #SR #SA #Marienburg #Commewijne #Universal #Love #UniversalLove

  14. Current weather for Marienburg SR / SA with the power of wttr.in curl {ba{c{k{z{sh}}}}} and lolcat

    Photograph shot with DSLR Nikon using FL Circular Polarizer 81A warming and love

    #weather #curl #wttr #bash #csh #ksh #zsh #lolcat #technology #OpenSource #SR #SA #Marienburg #Commewijne

  15. An amazing amount of work has been done to polish and bug squash my favorite photo editor

    Feast yourself upon the updates of Gimp v3.0.8

    #photo #editor #GIMP #bash #csh #ksh #zsh #fish #sh #OpenSource #Linux #Mac #programming #technology #POSIX

    gimp.org/news/2026/01/24/gimp-

  16. Current weather for Kwamalasemutu SR / SA

    A gorgeors place where you can meet and interact with natur up close and personal

    #Weather #curl #wttr #bash #csh #ksh #zsh #fish #sh #OpenSource #programming #technology #Mobile #POSIX

  17. Current weather in Leonsberg SR/SA with the power of wttr.in *sh curl and lolcat

    Avoid using prt 80 when aded the server may return a 0 status not respond

    #Weather #curl #wttr #bash #csh #ksh #zsh #fish #sh #OpenSource #programming #technology #Mobile #POSIX

  18. Current weather in Leonsberg SR/SA

    complements of wttr.in curl and any *sh{ba{c{k{z{fi}}}}}sh you love. Avoid using port 80 with this service, curling the data is light

    The photograph you see is one that I composed myself and it consists of a scene with very beautiful sluis {NL} in the district of Commewijne

    A sluis regulates water levels between the plantation and the river

    #Weather #curl #wttr #bash #csh #ksh #zsh #fish #sh #OpenSource #programming #technology #MobilePOSIX

  19. Weather in Marienburg SR SA image build the following way:

    * photograph composition
    ** location districk of Commewijne
    ** object een sluis (NL)
    * shell bash
    ** sh ksh zsh sh fish will do fine
    * server wttr.in
    * fecth program curl
    * formatting program lolcat
    * composed with Love for all who read this

    #Weather #curl #wttr #bash #csh #ksh #zsh #fish #sh #OpenSource #programming #technology #POSIX

  20. Current weather for Marienburg SR SA using the power of curl wttr.in {ba{c{k{z{sh}}}}} and lolcat

    #weather #bash #csh #ksh #zsh #lolcat #technology #OpenSource #SR #SA #Marienburg #Commewijne

  21. @rl_dane
    @stefano

    I should be able to do the same with the w3 tool that yt-dlp uses to fetch YouTube videos. I've looked for a practical use case to write a small program with that tool and you've just given me one 😊

    #sh #shell #bash #csh #ksh #zsh #programming #fedimeteo #weather #w3m #sed #tr #pipe

  22. Website for MOC. You're better off working with the version that comes with your Linux distribution or BSD flavor since that one has all the libraries compiled necessary to run.

    moc.daper.net/download/

    #VLC #libdvdcss #MOC #MPlayer #FFMPEG #command #line #VLC_i #Bash #sh #csh #ksh #zsh #fish #Linux #OpenSource #programming

  23. My motto is; be grateful for all OpenSource software you like to use, give credits to the programmers when you find more useful parameters in your beloved software.

    When I play audio files my player of choice has always been MOC; music on console has been stable for decades, is the lightest player I could find and is reminiscent of Midnight Commander / Norton Commander interface.
    MOC uses an ncurses interface, has all you need at the fingertips and can play many legacy formats like C64 VIC songs {Last Ninja!} Amiga modules {Das Boot!} with ease.

    MOC was released before Video LAN IIRC {I checked}

    At a certain point I wanted to play my DVDs in Linux. Logical since my Linux uptime was much, much higher cumulatively, than my win32 uptime, where I gamed. Wine either did not exist yet or could do very little for gaming in general.

    Then I learned about libdvdcss thus also about Video LAN.
    The fantastic thing about libdvdcss is that you don't have to mess with the region of your player. In that period you had to download libdvdcss yourself from the Video LAN site.
    You could only change that region for four times before it becomes permanent at the 5th.

    libdvdcss is mighty.

    I glanced over VLC, yet didn't brother to download the source code, since I use MPlayer to play my videos in combination with the Mighty FFMPEG library suite. When I finally came around to play with VLC I immediately noticed, how smooth it was coded. I also glanced over the Lua interface, yet left it untouched since I played with MOC, MPlayer / FFMPEG.

    VLC X11 UI is handy when you want to move faster than in MPlayer, which made me play more often with VLC when I was in X11.

    It was only very recent, that I started to play with VLC in bash.
    I was on a notebook which was air gapped so I could not download MOC.
    I invoked

    `vlc -I
    `

    What popped up was so beautiful that I was CLI heaven. Every parameter you could think of, where you would normally need to wander with your mouse, you can just type in and get prompted to your shell. You can also do that over the network LAN by the way (wow!)

    TIL another powerful feature of VLC cli. If you take the time to add the lyrics of the songs in the album to the directory where the songs reside, VLC will happily show them to you.

    I was floored.

    This is so efficient.

    VLC will not go messing on your internet connection which may be bandwidth metered like mine. VLC cli has so many features you just have to check them out on your own, to see which one you like and then play with them just like I do.

    Another impressive feature
    One problem we have when we have to downmix 5.1 or 7.1 audio to 2.0 is that the downmix becomes too soft, often 16 decibels too soft. Video LAN fixed that so simple & elegantly.
    Video LAN Client is the only one which can push its volume up to 200%!

    Thank you Video LAN programmers for this amazing work.

    videolan.org/developers/libdvd

    #VLC #libdvdcss #MOC #MPlayer #FFMPEG #command #line #VLC_i #Bash #sh #csh #ksh #zsh #fish #Linux #OpenSource #programming

  24. If I've never seen the codebase, which shell has the easiest code to read and understand? Specifically I want to isolate the code for *parsing* the command line syntax.

    All -compliant (or close enough) shells welcome! I probably don't know them all but off the top of my head:



    (sorry for the spam, marine life enthusiasts)


    & I think?

  25. Someone casually dropped a URL for a place where some wonderful shell based goodies are discussed

    I went to the URL and I got a few beautiful fantastic and sexy programs purely for *sh

    So whether you like csh ksh zsh tksh fish sh or any shell which I may or may not have heard of, these programs will run in them

    httping horst

    These two are making my day

    Check their man pages on the internet.

    httping looks gorgeous with the -K switch

    I will update this toot with an output of the commands. I shall make the screen caps on my Linux machine

    horst outputs sensitive data on the first page so I chose another innocent output
    tab

    #Thankful #FediVerse #POSIX #OpenSource #httping #horst #programming #networking #csh #ksh #zsh #bash #tksh #fish #sh

  26. Someone casually dropped a URL for a place where some wonderful shell based goodies are discussed

    I went to the URL and I got a few beautiful fantastic and sexy programs purely for *sh

    So whether you like csh ksh zsh tksh fish sh or any shell which I may or may not have heard of, these programs will run in them

    httping horst

    These two are making my day

    Check their man pages on the internet.

    httping looks gorgeous with the -K switch

    I will update this toot with an output of the commands. I shall make the screen caps on my Linux machine

    horst outputs sensitive data on the first page so I chose another innocent output
    tab

    #Thankful #FediVerse #POSIX #OpenSource #httping #horst #programming #networking #csh #ksh #zsh #bash #tksh #fish #sh

  27. Someone casually dropped a URL for a place where some wonderful shell based goodies are discussed

    I went to the URL and I got a few beautiful fantastic and sexy programs purely for *sh

    So whether you like csh ksh zsh tksh fish sh or any shell which I may or may not have heard of, these programs will run in them

    httping horst

    These two are making my day

    Check their man pages on the internet.

    httping looks gorgeous with the -K switch

    I will update this toot with an output of the commands. I shall make the screen caps on my Linux machine

    horst outputs sensitive data on the first page so I chose another innocent output
    tab

    #Thankful #FediVerse #POSIX #OpenSource #httping #horst #programming #networking #csh #ksh #zsh #bash #tksh #fish #sh

  28. Someone casually dropped a URL for a place where some wonderful shell based goodies are discussed

    I went to the URL and I got a few beautiful fantastic and sexy programs purely for *sh

    So whether you like csh ksh zsh tksh fish sh or any shell which I may or may not have heard of, these programs will run in them

    httping horst

    These two are making my day

    Check their man pages on the internet.

    httping looks gorgeous with the -K switch

    I will update this toot with an output of the commands. I shall make the screen caps on my Linux machine

    horst outputs sensitive data on the first page so I chose another innocent output
    tab

    #Thankful #FediVerse #POSIX #OpenSource #httping #horst #programming #networking #csh #ksh #zsh #bash #tksh #fish #sh

  29. Someone casually dropped a URL for a place where some wonderful shell based goodies are discussed

    I went to the URL and I got a few beautiful fantastic and sexy programs purely for *sh

    So whether you like csh ksh zsh tksh fish sh or any shell which I may or may not have heard of, these programs will run in them

    httping horst

    These two are making my day

    Check their man pages on the internet.

    httping looks gorgeous with the -K switch

    I will update this toot with an output of the commands. I shall make the screen caps on my Linux machine

    horst outputs sensitive data on the first page so I chose another innocent output
    tab

    #Thankful #FediVerse #POSIX #OpenSource #httping #horst #programming #networking #csh #ksh #zsh #bash #tksh #fish #sh

  30. In this one I use a bit of networking to get to the SBC via ssh, invoke my trusted sh player (I use it for many decades) output the audio via a audio interface to a 16 channel insturment mixer, which is connected to the Yamaha mixing console, which then sends it via a couple of AUX busses to the effect rack, where I put a Delay Reverb combo on it, return that signal back, then mix it with the output, after which the audio is sent analog to the different destinations I have in the house

    mastodon.social/@RadioAzureus/

    #ssh #networking #SBC #Raspberrie #Pi5 #moc #bash #csh #ksh #sh #audio #balanced #music