#csh — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #csh, aggregated by home.social.
-
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 |lolcatThis 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 --helpman lolcat(6) 🏳️🌈
https://github.com/busyloop/lolcat
man man(1)
#programming #rainbow #sh #csh #ksh #zsh #bash #fish #lolcat #man #manpages #OpenSource #Linux #BSD #POSIX #TV
-
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
#ntfy #notifications #programming #Android #Linux #sh #bash #csh #ksh #zsh #fish #curl #http #javascript #golang #powershell #python #php #technology #OpenSource #POSIX
-
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:
termuxinstalls 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
clangtook 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
-
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 -
https://www.evshift.com/426552/2026-chery-tiggo-9-csh-plug-in-hybrid-428-hp-acceleration-test/ 2026 Chery Tiggo 9 CSH Plug-In Hybrid 428 HP Acceleration Test #7SeatSUV #acceleration #Chery #CHERYTIGGO9 #CheryTiggo92026 #CheryTiggo92026Interior #CheryTiggo9CSH #CheryTiggo9Hybrid #CheryTiggo9Interior #CheryTiggo9Phev #CheryTiggo9PlugInHybrid #CheryTiggo9Review #CHERYTIGGO9SUPERHYBRID #CheryTiggoReview #CSH #ElectricCars #ElectricVehicles #EV #Hybrid #Hybrids #NewCheryTiggo92026 #PlugInHybrids #PlugIn #POVDrive #Test #tiggo #TIGGO9 #Tiggo9Phev
-
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
#curl #programming #mathematics #linear #algebra #libcurl #Linux #BSD #freeBSD #openBSD #netBSD #POSIX #bash #csh #ksh #sh #fish #radio #TV #smartTV #router
-
curl
Daniël Stenberg
facts and praise
I'm fortunate that I am allowed to follow Daniël, lead programmer of the mighty
curl. 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 interestingstats:
install base => 20000*106 devices
20 billion+ installations!
curlis used in command lines or scripts to transfer data. curl is alsolibcurl, 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
curlis 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
curlin simple implementations is IMHO quite easy. In case you need to know an extra option, the executable andlibcurlhave excellent documentation. End users normally interact withcurlusing the (elf) binary on Linux based POSIX operating systems. The more mature BSDs have another binary formatJust type
curlto get an initial output which looks like this on my current systemcurl
curl: try 'curl --help' or 'curl --manual' for more informationthen 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 optionWhen you type
curl --manual|lessyou get the manpages which I delimited withlessthrough 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 curlto 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 curlis also implemented ascurl --manualAn important RFC is echoed to my terminal in the
man curloutput which is RFC 3986A 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
curlis 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:
https://www.rfc-editor.org/rfc/rfc3986
https://curl.se/mail/lib-2026-03/0026.html
#curl #programming #mathematics #linear #algebra #libcurl #Linux #BSD #freeBSD #openBSD #netBSD #POSIX #bash #csh #ksh #sh #fish #radio #TV #smartTV #router
-
`lsof -i`
# display ports connected to the internet
#Networking #ports #lsof #Linux #csh #ksh #bash #zsh #sh #fish #programming #opensource #Technology #mathematics
-
Looks complex. (-:
C shell:
% printf '%s\n' $path
Z shell:
% printf '%q\n' "$path[@]"
-
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
-
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/mytopica.out
ntfy publish mytopic"Backup successful 😀"
HTML
POST /mytopic HTTP/1.1
Host: ntfy.shBackup 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 ()
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
https://docs.ntfy.sh/publish/#markdown-formatting
Sources:
https://docs.ntfy.sh/publish/#markdown-formatting
#ntfy #notifications #programming #Android #Linux #sh #bash #csh #ksh #zsh #fish #curl #http #javascript #golang #powershell #python #php #technology #OpenSource #POSIX
-
$
uptime
$last|less#sh #bash #csh #ksh #sh #fish #programming #OpenSource #technology #commandline #command #line #ed #edlin
-
A fix for single user mode with csh/tcsh would be nice:
-
ping ::1The shortest ping to localhost in IPv6
In markdown
#MyFirstToot #ping #sh #bash #csh #ksh #zsh #BSD #OpenSource #Linux #freeBSD #ghostBSD #openBSD #programming #mathematics #technology
-
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
-
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
-
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
-
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
-
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
-
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
-
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
-
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
-
Current weather in Palmentuin SR / SA
compliments of wttr.in curl *sh and lolcat
#Weather #curl #wttr #bash #csh #ksh #zsh #fish #sh #OpenSource #programming #technology #Mobile #POSIX
-
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
-
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
-
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
-
The javascript tool yt-dlp uses is deno
Ill play with it later in the day
#sh #shell #bash #csh #ksh #zsh #programming #technology #deno #fedimeteo #weather #w3m #sed #tr #pipe
-
Interesting method; you use w3m tr head sed and a verical pipe to format the output for your favourite sh
https://linux.die.net/man/1/w3m
#sh #shell #bash #csh #ksh #zsh #programming #fedimeteo #weather #w3m #sed #tr #pipe
-
-
-
-
Website for FFMPEG, the Mighty encoding / decoding library suite.
https://ffmpeg.org/download.html
#VLC #libdvdcss #MOC #MPlayer #FFMPEG #command #line #VLC_i #Bash #sh #csh #ksh #zsh #fish #Linux #OpenSource #programming
-
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.
https://moc.daper.net/download/
#VLC #libdvdcss #MOC #MPlayer #FFMPEG #command #line #VLC_i #Bash #sh #csh #ksh #zsh #fish #Linux #OpenSource #programming
-
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.
https://www.videolan.org/developers/libdvdcss.html
#VLC #libdvdcss #MOC #MPlayer #FFMPEG #command #line #VLC_i #Bash #sh #csh #ksh #zsh #fish #Linux #OpenSource #programming
-
Rules
* Never execute scripts from the internet
* Never execute scripts as root if you do not know what they do#Programming #bash #sh #csh #ksh #fish #OpenSource #fork #bomb #forkbomb
-
If I've never seen the codebase, which #Linux shell has the easiest code to read and understand? Specifically I want to isolate the code for *parsing* the command line syntax.
All #POSIX-compliant (or close enough) shells welcome! I probably don't know them all but off the top of my head:
#bash
#dash
#fish (sorry for the spam, marine life enthusiasts)
#zsh
#ksh
#tcsh & #csh I think? -
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
-
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
-
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
-
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
-
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
-
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
https://mastodon.social/@RadioAzureus/115073277370235897
#ssh #networking #SBC #Raspberrie #Pi5 #moc #bash #csh #ksh #sh #audio #balanced #music