Tux Machines

Do you waddle the waddle?

Other Sites

9to5Linux

Dillo 3.2 Open-Source Web Browser Released to Celebrate 25th Anniversary

Dillo 3.2 comes with several new features like initial SVG support for math formulas and other simple SVG images, support for WebP images, and a new scrollbar page navigation mode that lets you read websites as if they’re books by easily scrolling full pages with the mouse.

LinuxGizmos.com

VersaLogic’s Sabertooth AI Combines Xeon-E Processor with NVIDIA RTX GPU

VersaLogic Corp. has introduced the Sabertooth AI, a compact and rugged embedded system designed for AI inferencing and high-bandwidth video applications. Featuring DDR4 ECC memory, dual GbE, and support for multiple displays, it delivers high computational performance in a small form factor for industrial and edge computing.

HackCable: USB-C Keystroke Injection Cable with RP2040 or ESP32

Kickstarter recently featured the HackCable, a USB-C cable designed for cybersecurity research and system testing. It resembles a standard charging cable but includes features like built-in Wi-Fi and keystroke injection, providing a discreet and versatile tool for professionals and researchers.

LLM630 Compute Kit with Wi-Fi 6, GbE, and LLM Support for Edge AI

The M5Stack LLM630 Compute Kit is a development platform targeting edge computing and intelligent applications. It features Gigabit Ethernet, Wi-Fi 6, camera support, and expansion interfaces, designed to handle tasks such as computer vision, large language model processing, and other embedded applications.

PocketBeagle 2 Offers Compact Design with AM6232 Processor

The PocketBeagle 2 from the BeagleBoard.org Foundation introduces a compact design paired with enhanced performance and connectivity features. Built on the AM6232 processor, this board provides a 64-bit platform within the established PocketBeagle form factor.

Orbbec Unveils Gemini 215 Stereo 3D Camera and Pulsar SL450 at CES 2025

At CES 2025, Orbbec introduced the Gemini 215 Stereo 3D Camera and the Pulsar SL450 dToF Single-Line LiDAR. The Gemini 215, designed for high-precision scanning, features depth measurement accuracy of less than 0.5 millimeters, multi-camera synchronization, and a lightweight build, making it suitable for various short-range 3D scanning applications.

Bash-5.2 Release available

posted by Roy Schestowitz on Sep 27, 2022

Introduction
============

The first public release of bash-5.2 is now available with the URLs
ftp://ftp.cwru.edu/pub/bash/bash-5.2.tar.gz ftp://ftp.gnu.org/pub/gnu/bash/bash-5.2.tar.gz
and from the master branch of the bash git repository (http://git.savannah.gnu.org/cgit/bash.git/log/) and the usual GNU mirror sites.
Bash is the GNU Project's Bourne Again SHell, a complete implementation of the POSIX shell spec, but also with interactive command line editing, job control on architectures that support it, csh-like features such as history substitution and brace expansion, and a slew of other features. For more information on the features of Bash that are new to this type of shell, see the file `doc/bashref.texi'. There is also a large Unix-style man page. The man page is the definitive description of the shell's features.
This tar file includes the formatted documentation (pdf, postscript, dvi, info, and html, plus nroffed versions of the manual pages).
Please use `bashbug' to report bugs with this version. It is built and installed at the same time as bash.
Installation ============
Please read the README file first.
Installation instructions are provided in the INSTALL file.
New Features ============
This is an update to the fifth major release of bash.
Read the file NEWS in the bash-5.2 distribution for a complete description of the new features. A copy of the relevant portions is included below.
This release fixes several outstanding bugs in bash-5.1 and introduces a number of new features.
There are a number of bug fixes, including several bugs that caused the shell to crash. Complete details are available in the CHANGES file.
The most notable new feature is the rewritten command substitution parsing code, which calls the bison parser recursively. This replaces the ad-hoc parsing used in previous versions, and allows better syntax checking and catches syntax errors much earlier. The shell attempts to do a much better job of parsing and expanding array subscripts only once; this has visible effects in the `unset' builtin, word expansions, conditional commands, and other builtins that can assign variable values as a side effect. The `unset' builtin allows a subscript of `@' or `*' to unset a key with that value for associative arrays instead of unsetting the entire array (which you can still do with `unset arrayname'). There is a new shell option, `patsub_replacement'. When enabled, a `&' in the replacement string of the pattern substitution expansion is replaced by the portion of the string that matched the pattern. Backslash will escape the `&' and insert a literal `&'. This option is enabled by default. Bash suppresses forking in several additional cases, including most uses of $( All the new features are described below.
Readline has new features as well. There is a new option: `enable-active-region'. This separates control of the active region and bracketed-paste. It has the same default value as bracketed-paste, and enabling bracketed paste enables the active region. Users can now turn off the active region while leaving bracketed paste enabled. Two new bindable string variables are available; their values are terminal escape sequences that set the color used to display the active region and turn it off, respectively. If set, these are used in place of terminal standout mode. Finally, Readline now checks for changes to locale settings (LC_ALL/LC_CTYPE/ LANG) each time it is called, and modifies the appropriate locale-specific display and key binding variables when the locale changes.
There are a few incompatible changes between bash-5.1 and bash-5.2. Here- documents and here-strings use temporary files if the shell compatibility level is 50 or lower. The `unset' builtin in bash-5.2 treats array subscripts `@' and `*' differently than previous versions, and differently depending on whether the array is indexed or associative. Bash-5.2 attempts to prevent double-expansion of array subscripts under certain circumstances, especially arithmetic evaluation, by acting as if the `assoc_expand_once' shell option were set. Set the compatibility level appropriately to revert to previous behavior; details are in the file COMPAT.
Bash can be linked against an already-installed Readline library rather than the private version in lib/readline if desired. Only readline-8.1 and later versions are able to provide all of the symbols that bash-5.2 requires; earlier versions of the Readline library will not work correctly.
A complete list of changes between bash-5.1 and bash-5.2 is available in the file CHANGES; the complete list is too large to include in this message.
Readline ========
Also available is a new release of the standalone Readline library, version 8.2, with its own configuration scripts and Makefiles. It can be retrieved with the URLs
ftp://ftp.cwru.edu/pub/bash/readline-8.2.tar.gz ftp://ftp.gnu.org/pub/gnu/readline/readline-8.2.tar.gz
and from the master branch of the GNU readline git repository (http://git.savannah.gnu.org/cgit/readline.git/log/) and the usual GNU mirror sites.
The formatted Readline documentation is included in the readline distribution tar file.
The changes in Readline are described in a separate announcement.
As always, thanks for your help.
Chet
+========== NEWS ==========+ This is a terse description of the new features added to bash-5.2 since the release of bash-5.1. As always, the manual page (doc/bash.1) is the place to look for complete descriptions.
1. New Features in Bash
a. The bash malloc returns memory that is aligned on 16-byte boundaries.
b. There is a new internal timer framework used for read builtin timeouts.
c. Rewrote the command substitution parsing code to call the parser recursively and rebuild the command string from the parsed command. This allows better syntax checking and catches errors much earlier. Along with this, if command substitution parsing completes with here-documents remaining to be read, the shell prints a warning message and reads the here-document bodies from the current input stream.
d. The `ulimit' builtin now treats an operand remaining after all of the options and arguments are parsed as an argument to the last command specified by an option. This is for POSIX compatibility.
e. Here-document parsing now handles $'...' and $"..." quoting when reading the here-document body.
f. The `shell-expand-line' and `history-and-alias-expand-line' bindable readline commands now understand $'...' and $"..." quoting.
g. There is a new `spell-correct-word' bindable readline command to perform spelling correction on the current word.
h. The `unset' builtin now attempts to treat arguments as array subscripts without parsing or expanding the subscript, even when `assoc_expand_once' is not set.
i. There is a default value for $BASH_LOADABLES_PATH in config-top.h.
j. Associative array assignment and certain instances of referencing (e.g., `test -v' now allow `@' and `*' to be used as keys.
k. Bash attempts to expand indexed array subscripts only once when executing shell constructs and word expansions.
l. The `unset' builtin allows a subscript of `@' or `*' to unset a key with that value for associative arrays instead of unsetting the entire array (which you can still do with `unset arrayname'). For indexed arrays, it removes all elements of the array without unsetting it (like `A=()').
m. Additional builtins (printf/test/read/wait) do a better job of not parsing array subscripts if array_expand_once is set.
n. New READLINE_ARGUMENT variable set to numeric argument for readline commands defined using `bind -x'.
o. The new `varredir_close' shell option causes bash to automatically close file descriptors opened with {var} p. The `$0' special parameter is now set to the name of the script when running any (non-interactive) startup files such as $BASH_ENV.
q. The `enable' builtin tries to load a loadable builtin using the default search path if `enable name' (without any options) attempts to enable a non-existent builtin.
r. The `printf' builtin has a new format specifier: %Q. This acts like %q but applies any specified precision to the original unquoted argument, then quotes and outputs the result.
s. The new `noexpand_translations' option controls whether or not the translated output of $"..." is single-quoted.
t. There is a new parameter transformation operator: @k. This is like @K, but expands the result to separate words after word splitting.
u. There is an alternate array implementation, selectable at `configure' time, that optimizes access speed over memory use (use the new configure --enable-alt-array-implementation option).
v. If an [N]<&WORD- or [N]>&WORD- redirection has WORD expand to the empty string, treat the redirection as [N]<&- or [N]>&- and close file descriptor N (default 0).
w. Invalid parameter transformation operators are now invalid word expansions, and so cause fatal errors in non-interactive shells.
x. New shell option: patsub_replacement. When enabled, a `&' in the replacement string of the pattern substitution expansion is replaced by the portion of the string that matched the pattern. Backslash will escape the `&' and insert a literal `&'.
y. `command -p' no longer looks in the hash table for the specified command.
z. The new `--enable-translatable-strings' option to `configure' allows $"..." support to be compiled in or out.
aa. The new `globskipdots' shell option forces pathname expansion never to return `.' or `..' unless explicitly matched. It is enabled by default.
bb. Array references using `@' and `*' that are the value of nameref variables (declare -n ref='v[@]' ; echo $ref) no longer cause the shell to exit if set -u is enabled and the array (v) is unset.
cc. There is a new bindable readline command name: `vi-edit-and-execute-command'.
dd. In posix mode, the `printf' builtin checks for the `L' length modifier and uses long double for floating point conversion specifiers if it's present, double otherwise.
ee. The `globbing' completion code now takes the `globstar' option into account.
ff. `suspend -f' now forces the shell to suspend even if job control is not currently enabled.
gg. Since there is no `declare -' equivalent of `local -', make sure to use `local -' in the output of `local -p'.
2. New Features in Readline
a. There is now an HS_HISTORY_VERSION containing the version number of the history library for applications to use.
b. History expansion better understands multiple history expansions that may contain strings that would ordinarily inhibit history expansion (e.g., `abc!$!$').
c. There is a new framework for readline timeouts, including new public functions to set timeouts and query how much time is remaining before a timeout hits, and a hook function that can trigger when readline times out. There is a new state value to indicate a timeout.
d. Automatically bind termcap key sequences for page-up and page-down to history-search-backward and history-search-forward, respectively.
e. There is a new `fetch-history' bindable command that retrieves the history entry corresponding to its numeric argument. Negative arguments count back from the end of the history.
f. `vi-undo' is now a bindable command.
g. There is a new option: `enable-active-region'. This separates control of the active region and bracketed-paste. It has the same default value as bracketed-paste, and enabling bracketed paste enables the active region. Users can now turn off the active region while leaving bracketed paste enabled.
h. rl_completer_word_break_characters is now `const char *' like rl_basic_word_break_characters.
i. Readline looks in $LS_COLORS for a custom filename extension (*.readline-colored-completion-prefix) and uses that as the default color for the common prefix displayed when `colored-completion-prefix' is set.
j. Two new bindable string variables: active-region-start-color and active-region-end-color. The first sets the color used to display the active region; the second turns it off. If set, these are used in place of terminal standout mode.
k. New readline state (RL_STATE_EOF) and application-visible variable (rl_eof_found) to allow applications to detect when readline reads EOF before calling the deprep-terminal hook.
l. There is a new configuration option: --with-shared-termcap-library, which forces linking the shared readline library with the shared termcap (or curses/ncurses/termlib) library so applications don't have to do it.
m. Readline now checks for changes to locale settings (LC_ALL/LC_CTYPE/LANG) each time it is called, and modifies the appropriate locale-specific display and key binding variables when the locale changes.
-- ``The lyf so short, the craft so long to lerne.'' - Chaucer ``Ars longa, vita brevis'' - Hippocrates Chet Ramey, UTech, CWRU chet@case.edu http://tiswww.cwru.edu/~chet/

Other Recent Tux Machines' Posts

Release of Ghostty 1.0
Ghostty 1.0 is out
Kodi 21.2 "Omega" - Release
News from Kodi
Why We Have Essentially Won the Hearing [original]
A small win for journalism in the UK
 
Linux 6.1.126
Only upgrade if 6.1.125 did not build properly for you
Wasting time with inconsistent data
One of my leisure time activities is to develop KMyMoney, a personal finance management application
This Week in KDE Apps: Usability, accessibility, and supercharging the Fediverse
Every week we cover as much as possible of what's happening in the world of KDE apps
121 packages in Debian mapped to hardware for automatic recommendation
I have been working on a automatic hardware based package recommendation system for Debian and other Linux distributions
today's leftovers
GNU/Linux, Free, Libre software and more
Programming Leftovers
Development picks
Windows TCO Leftovers
Microsoft blunders
Open Hardware: OrangePi, Raspberry Pi 4, and More
Hardware news
today's howtos
Instructionals/Technical post
Malware in Proprietary Software - 2024 Catch-up
back doors, DRM, tethering, and others, has become ever more frequent
Security Holes and Windows TCO
Windows TCO in the government
Test AlmaLinux 10 Beta With Your Workload Using ELevate
Although we’re still months away from the release of Red Hat Enterprise Linux 10
Android Leftovers
New Hisense A9 Android smartphone features an e-ink display
Linux Apps for Chromebooks in 2025: Our Top Picks and Why You Need Them
Owning a Chromebook doesn’t mean you're limited to just basic apps
CMYK support in Inkscape could be a game-changer for professional print designers
As a digital artist and long-time user of free and libre graphic software
GNU/Linux Applications via Crostini and Flathub
software leftovers
today's howtos
handful oof howtos
Hardware: Arduino, Steam Deck, Raspberry Pi
Hardware picks
Free and Open Source Software
This is free and open source software
Salix – Slackware-based Linux distribution
Salix is a Linux distribution based on Slackware that is simple, fast and easy to use, with stability being a primary goal
Today in Techrights
Some of the latest articles
Hardware and Mobile Leftovers
some gadgets and such
Security Leftovers
Security links, 4 more for now
Programming Leftovers
Development picks
Audiocasts/Shows: Hackaday Podcast, Lunduke, and GNU World Order
3 new episodes
today's howtos
many howtos for today
Events: Daniel Pocock on FOSDEM (Belgium), LSFMM+BPF 2025, and More
3 picks for now
PostgreSQL Picks: Logical replication, workshop, PostgreSQL JDBC 42.7.5
some psql news
Cinnamon 6.4 Landed in LMDE 6 “Faye”
The Cinnamon 6.4 desktop environment and many other goodies debuted in the new Linux Mint 22.1
Kodi 21.2 is Out! Significantly Faster Library Scan & Lots of Fixes
Kodi, the popular free open-source home theater software
Dillo 3.2 Open-Source Web Browser Released to Celebrate 25th Anniversary
The lightweight and open-source web browser written in the FLTK 1.3 GUI toolkit is still alive and has been updated today to version 3.2 as another hefty update.
This Week in GNOME #183 Updated Flatpak
Update on what happened across the GNOME project in the week from January 10 to January 17
Wine, KDE, and Red Hat
GNU/Linux leftovers
Hardware: Arduino, Raspberry Pi, Old Machines, Homelabs, and GNU/Linux
Hardware coverage
Windows TCO and Security Leftovers
Security incidents and more
The Arch Linux Community Survey Results Are Here
What do Arch Linux users prefer
today's leftovers
mostly FOSS picks
Security and Windows TCO
the dark side
Open Hardware and Linux: ESP32, RISC-V, System76, and More
hardware focus
today's howtos
Instructionals/Technical picks
7 Docker containers that make Linux the perfect OS for a home lab
Linux powers most servers in the world
Games Final Fantasy VII Rebirth, GNU/Linux, and GamingOnLinux
Gaming news, mostly GamingOnLinux
Linux Mint 22.1 “Xia” Is Now Available for Download, Here’s What’s New
The wait is finally over as the Linux Mint team has published the final ISO images of the Linux Mint 22.1 “Xia” release, which are available for download from the official mirrors.
Outlook for the new year 2025
Happy new year 2025! I wish a great year for you, and the global LibreOffice community
Red Hat is Promoting LLM Slop (Unethical), Fiscal Bubbles, and Sponsored (Bribed) Press
Red Hat today sucks
Best Free and Open Source Software
Only free and open source software is eligible for inclusion
Dragora – independent Linux distribution
Dragora is an independent Linux distribution
This Week in Plasma: Getting Plasma 6.3 in Great Shape
We're barely a week into the Plasma 6.3 beta period
7 Raspberry Pi-Based Laptops and Tablets for Tinkerers
Raspberry-powered laptops and tablets can be the perfect pick for your projects
5 lightweight Linux distributions that will bring your old PC back to life
If you have an aging computer and want to repurpose it
Remembering and thanking Steve Langasek
Steve Langasek is one of my heroes in open source and in life
Bubi at 400 [original]
good at uptimes here
Security Leftovers
Security related news
today's leftovers
FOSS and more
Linux Devices and Open Hardware: PocketBeagle, RISC-V, and Nvidia Project DIGITS Running GNU/Linux
Some hardware picks
AlmaLinux and Red Hat Leftovers
mostly corporate things
today's howtos
a handful of howtos
GNOME 48 Expands Core Apps With New Audio Player
When GNOME 48 is released in March it will debut with a brand-new audio player
Applications: Jellyfin, syslog-ng, and Best SSH Client for GNU/Linux
some software news
Microsoft change removed from Linux over Intel CPU issues
Intel and AMD engineers have stepped in at the eleventh hour to deal with a code contribution from a Microsoft developer that could have broken Linux 6.13 on some systems.
GNU Project: Guix User and Contributor Survey, FreeIPMI 1.6.15 release
What's new in GNU
Apple Wants People to Use Proprietary Software to Run "Linux"
Parallels Desktop
Deepin 25 Preview: A Sleek Redesign with Major Under-the-Hood Changes
Deepin 25 changes direction
Today in Techrights
Some of the latest articles
Open Hardware: Raspberry Pi and System76
and more
today's howtos
Instructionals/Technical post
Programming Leftovers
Geolytica and more
Stable kernels: Linux 6.12.10, Linux 6.6.72, and Linux 6.1.125
All users of the 6.12 kernel series must upgrade
Android Leftovers
The Most Expensive Phones Aren't iPhones—They Run Android
LibreOffice 25.2 RC2 is available for testing
LibreOffice 25.2 will be released as final at the beginning of February, 2025
10 Linux apps I install on every new machine (and why you should, too)
If you're wondering which apps take priority on your new Linux machine
Klassy for development version of Plasma
You might have seen the awesome Klassy theme by Paul McAuley for Qt applications and window decorations for KWin
Security and Windows TCO
Windows TCO and more
Games: Cubic Odyssey, THREAT VECTOR, and More
7 articles from GamingOnLinux
Android Leftovers
Your Android-Powered Car is About To Get a Lot More Apps
PureOS Crimson Development Report: December 2024
It’s a new year, and we are excited for the developments coming this year to Librem devices
MX Linux 23.5 Released with Xfce 4.20 and Linux 6.12 LTS, Based on Debian 12.9
MX Linux 23.5 has been released today as the newest ISO snapshot in the MX Linux 23 “Libretto” series of this lightweight Debian-based GNU/Linux distribution for everyday use.
3 reasons Pop!_OS might be the best Linux distro for gamers
There are some excellent Linux distros available
Sponsored Puff Piece, Microsoft Openwashing by OSI, and Programming
today's leftovers
Best Free and Open Source Software
We recommend the best free and open source alternatives for Linux
Raspberry Pi for BBS and All The Attacks On The RP2350
A pair of Raspberry Pi stories
today's howtos
4 howtos for now
GNU/Linux Applications: apt Clean Up Utilities, Libvirt 11.0.0, Bottles 51.18, Stacer, and More
Applications for BSD and GNU/Linux in particular
ExTiX – Ubuntu-based Linux distribution
ExTiX is a Linux distribution based on Ubuntu
Kirigami Addons 1.7.0
Kirigami Addons is a collection of additional components for Kirigami applications
Security and Windows TCO
patches, Windows TCO, and more
EasyOS Daedalus-series 6.5.5 and More
EasyOS news
Today in Techrights
Some of the latest articles