Tux Machines

Do you waddle the waddle?

Other Sites

9to5Linux

KDE Frameworks 6.22 Fixes Multiple Clipboard-Related Issues on Wayland

KDE Frameworks 6.22 is here to fix multiple clipboard-related issues on Wayland, including an issue that caused the current copied data from the Klipper clipboard app to be lost when closing the pop-up without selecting anything, and an issue where the Spectacle screenshot tool failed to copy screenshots to the clipboard.

KDE Gear 25.12.1 Released with Various Improvements for Your Favorite KDE Apps

KDE Gear 25.12.1 is here with improvements for the KDE Itinerary travel assistant app, which now features an extractor for KLM’s “Ticket for your trip” emails, support for extracting GOMUS annual tickets, and an updated KLM boarding pass extractor to also extract the boarding group.

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

Barbados Joining Growing Number of Nations Where GNU/Linux is Measured at Around 10% [original]
Did something happen there?
New GeForce NOW native Linux support could lure Windows 10 refugees
NVIDIA is reportedly preparing to bring NVIDIA GeForce NOW to Linux so that users finally have native support for the cloud gaming service
Fedora Dominated by IBM Staff, Red Hat is 100% Focused on Promoting Slop and Riding Bubbles
sad news
Ubuntu 25.04 (Plucky Puffin) Officially Nears End of Life
Ubuntu 25.04 (Plucky Puffin) will reach end of life on January 15, 2026
Distributions and Operating Systems: AnduinOS, NeXT, EasyOS, FreeBSD, and Gentoo
mixture of relevant news
KDE Gear 25.12.1 Released with Various Improvements for Your Favorite KDE Apps
The KDE Project released today KDE Gear 25.12.1 as the first maintenance update to the latest KDE Gear 25.12 series of this collection of open-source apps for the KDE Plasma desktop environment and other platforms.
IPFire Linux Firewall Distro Adds Wi-Fi 7 and Wi-Fi 6 Support, LLDP and CDPv2
IPFire 2.29 Core Update 199 has been released today by developer Michael Tremer as a new update to this hardened Linux firewall distribution that primarily performs as a router and a firewall, which introduces Wi-Fi 7 support and many other changes.
 
KDE Frameworks 6.22 Fixes Multiple Clipboard-Related Issues on Wayland
KDE Frameworks 6.22 open-source software suite is out now with various improvements and bug fixes for KDE apps and the Plasma desktop. Here’s what’s new!
Vitalik Buterin Rides the Credibility of Linux
Linux as a brand
Security and BSD Leftovers
just 2 more links for now
Free, Libre, and Open Source Software, Open Access, and Standards
FOSS and more
Web Browsers: Brave Adblock Engine Rewrite, Using RSS, and Firefox Pushing Slop Dressed Up as Hey Hi (AI) After Removing RSS Support, Which Was Actually Useful
WWW picks
Programming Leftovers
Development related leftovers
Open Hardware/Modding: Fairphone, Raspberry Pi, and More
gadgets and more
Omarchy 3.3.0 Released
based on Arch
Dima Kogan has the Meshroom packaged for Debian, Reproducible Builds in December 2025
Debian picks
today's howtos
only 3 for now
Games: Steel Bounty, Dungeon Rampage, Wireworks, and Dig Dig Die
half a dozen new articles from GamingOnLinux
Does 1 in 10 Laptops/Desktops in Somalia Run GNU/Linux Now? [original]
statCounter sees the same duo at almost 10%
today's howtos
only half a dozen for now
Security Patching in GNU/Linux
Security leftovers
Free, Libre, and Open Source Software Leftovers
FOSS picks
GNU/Linux Leftovers
kernel and more
Orange Pi RV2 and Octa-core RISC-V GNU/Linux laptop in 2026
some exciting Linux devices
Red Hat and Fedora Leftovers
mostly Red Hat, some Fedora
European Commission issues call for evidence on Free/Libre Software
FOSS win
Android Leftovers
I used the Honor Magic8 Pro, and the OnePlus 15 should be worried
This free tool gives you one easy way to install apps on Linux and Mac - here's how
With Homebrew, you get access to even more apps - maintained by both Linux and MacOS developers
The state of Enterprise Linux for networking
The open-source Linux operating system has emerged to be the foundation for cloud and networking across industries
Why do I use Linux? It's the apps, and here are 7 of my favorites
Many people say they would switch to Linux if it weren't for the lack of some Windows-exclusive apps
This lightweight distro loaded with apps is not your father's GNU/Linux - here's why
Lightweight Linux distributions get a bad rap for shipping with minimal reinstalled software
MUSE Book laptop review – Testing an octa-core RISC-V Linux laptop in 2026
SpacemiT sent me a sample of the MUSE Book RISC-V Linux laptop for review
Free and Open Source Software
This is free and open source software
CuerdOS 2.0 Skycatcher Xfce: Spanish Distro Takes Chances, Mostly Succeeds
CuerdOS 2.0 Skycatcher’s Xfce edition leans on Debian Trixie, custom tuning
GNU/Linux Rose to 6% in Benin, Says statCounter [original]
GNU/Linux gains
Today in Techrights
Some of the latest articles
Free, Libre, and Open Source Software and Standards
leftovers focused on FOSS
Programming Leftovers
Development picks
Web Browsers/Web Servers: curl, RSS, and More
WWW centric picks
Linux and BSD Leftovers
This Week in Linux and more
Servers: Self-Hosted Grafana and Latest From Kubernetes
Server news
Android Leftovers
Your Android-powered car will get faster updates thanks to Qualcomm
Red Hat is Promoting Slop and Back Doors (Sold as "Confidential")
IBM and RHAT stuff
Devices With GNU/Linux and Open Hardware, 3-D Printing
On modding oriented machines
This Week in Plasma: new year, new accessibility features!
Plasma developers are starting to trickle back from their vacations
Want to try the original KDE desktop from 1996? I did, and it took me back - here's how
You can revisit the early days of Linux through MiDesktop, a modern fork of the original KDE 1
Kernel deadlock and splitting a Linux kernel package
Linux and more
today's howtos
idroot and more
Games: Titles in Steam, Godot 4.6 Beta 3, Vista 11 at Risk as GNU/Linux Gains (RAM Prices Favour the Latter)
many picks for today
I built a project management dashboard with Linux KDE Plasma widgets (no apps needed)
Well, here’s how I used KDE Plasma widgets to turn my Linux desktop into a functional project management dashboard
5 reasons I stopped using Ubuntu
Ubuntu has long been the face of Linux
Sick of Microslop? New Linux distro could win over Windows 11 haters
This is markedly different from current Linux efforts on the Windows front
Make Gnome Screenshot Work Again in Ubuntu 25.10
For users who prefer the classic Gnome Screenshot tool
Free and Open Source Software
This is free and open source software
Stable kernels: Linux 6.18.4, and Linux 6.12.64
I'm announcing the release of the 6.18.4 kernel
Fedora, GNU-like Mobile Linux, and Fake 'FSF' (FSF-EEE)
some leftovers
Android Leftovers
Google’s new Android source code release schedule is bad news for custom ROMs
Immutable Distro Nitrux 5.1 Released with Linux Kernel 6.18 LTS, New Tools
Nitrux developer Uri Herrera announced today the general availability of Nitrux 5.1 as a new stable update to this immutable and systemd-free distribution featuring new and updated components.
TUXEDO InfinityBook Max 16 Gen10 Linux Laptop Unveiled with New OLED Display
Linux hardware vendor TUXEDO Computers unveiled today the 10th generation (Gen10) of their TUXEDO InfinityBook Max 16 Linux-powered laptop with newer NVIDIA GPUs, newer Intel CPU, and a new display.
Someone made a sticky notes app within the Linux terminal, and you can download it right now
Ever since I made the jump over to Linux
This new Linux app lets you control your PC with your voice, and it's free
EasySpeak should fill a notable gap in the Linux ecosystem where many existing voice tools are either proprietary
Disable Lock Screen Media Controls in GNOME 49 (Ubuntu 25.10, Fedora 43)
This tutorial shows how to disable the media controls in the lock screen of GNOME 49 desktop in Ubuntu 25.10, Fedora 43
6 things Windows users always get wrong about Linux (and what’s actually true)
There are many misconceptions about Linux
This Linux distro is for people who just want games to work
There's no shortage of gaming-focused Linux distros right now
3 must-try tools if you want Windows-like desktop widgets on Ubuntu
During a recent visit to Stack Exchange's Unix and Linux section
I Thought This Wikipedia App for Linux was Pointless (I Was Wrong)
When I saw Wike in the GNOME Software store, I thought
Free and Open Source Software, howtos and Installations
This is free and open source software
Debian Urgently Seeks Volunteers After Data Protection Team Resigns
Debian seeks contributors interested in privacy to restore its Data Protection Team after all members stepped back
Games: Humble Bundle, More Gaming Handhelds Running GNU/Linux, SteamOS 3.7.19
9 picks from GamingOnLinux
Fedora 44 Will Be the First Distro to Adopt KDE's Plasma Login Manager
KDE recently announced that Plasma 6.8 will drop X11 support completely
Try Joplin: Your Open Source Evernote Alternative
If you rely heavily on note-taking apps and want to switch from a proprietary to an open-source solution
One Week of 2026 [original]
It has now been 7 days in the new year
Recent HowTos From Make Tech Easier
4 recent articles
GNU/Linux and Hardware Leftovers
mostly GNU/Linux
Free, Libre, and Open Source Software and Programming Leftovers
FOSS and more
Recent Valnet Articles on GNU/Linux Work Through the Shell/Bash/Terminal
5 recent articles
Simon Batt's (Valnet) Journey Through GNU/Linux Distros, Including One on a Floppy Disk
a pair of recent articles
5 tiny Linux tools that replace big, heavy apps
It just works, and that's enough
Red Hat: Elections in Fedora, systemd Update, and Flathub Record
IBM et al
Linux package managers beat the Microsoft Store in every way
And it's not even close
6 Linux distros that are perfect for rescuing your PC
Whether it's destined for a closet or a landfill, these distros can be a perfect way to keep your PC alive
System76's Rust-based COSMIC desktop for Linux is here — and it's amazing
Most of the Linux distros I usually recommend to people tend to either use GNOME or KDE. Those 2 dominate the space
Newly discovered Unix V4 tape
UNIX is sort of back
Kernel: BPF, Memory Use, and "Episode 29 of the Dirk and Linus show"
Linux coverage from LWN
Red Hat, Bazaar (Flatpak), and Hey Hi (AI) Hype Instead of GNU/Linux or FOSS
IBM stuff
Today in Techrights
Some of the latest articles
today's leftovers
GNU/Linux focus for now
Security Leftovers
Security picks
Free, Libre, and Open Source Software and Standards
FOSS and more
Web Browsers/Clients: Curl, Search, and RSS
3 new picks
Databases: YottaDB and Postgres Self-managing
a pair of picks
Programming Leftovers
Development picks
ThinkPads and Yogas With GNU/Linux Preloaded, Rave About Ventoy
Desktop/Laptop picks for today
Devices With Linux and Open Hardware
Hardware related news
BSD Leftovers
3 stories about BSDs
AMD Claims to be Releasing Details or Code for Linux and More
hints only
Ubuntu Leftovers and Proprietary Stuffing
some links
Manjaro 26.0 Released with Linux 6.18 LTS, Xfce 4.20, KDE Plasma 6.5, and GNOME 49
Arch Linux-based Manjaro Linux 26.0 distribution has been officially released today as a major update that introduces some of the latest GNU/Linux technologies and open-source software.
today's howtos
about half a dozen howtos
GNU/Linux Measured as Having Risen to 5% in Burundi [original]
The Republic of Burundi is hardly the exception in Africa
HSBC blocks app users for having sideloaded password manager
HSBC didn't provide The Register with a clear answer on why it won't allow a sideloaded Bitwarden installation to coexist with its app on the same device
How Github monopoly is destroying the open source ecosystem
We need to talk about your Github addiction
Free, Libre, and Open Source Software and Standards
FOSS and more
Android Leftovers
Xreal goes all-in with Android XR, announces deepened collaboration with Google
Games: Humble Choice, Steam, and DLSS
3 stories from GamingOnLinux
You’re sleeping on Linux Mint’s most powerful feature: Cinnamon’s built-in gestures
Linux Mint is known for being intuitive and beginner-friendly
This is the tiniest Linux distro I've ever seen
Linux has a reputation for reviving old hardware
Why I use Qubes: 3 security reasons a normal Linux distro can’t match
Qubes is still a mystery to most Linux users
Jellyfin Marks 7 Years With Major Desktop App Changes
Jellyfin confirms the new desktop app is now available on Flathub and Arch AUR for Linux users
Linux players on Steam reached all-time high in December
Valve has released the results of its Steam Hardware & Software Survey for December 2025
2026 could be the year of the (KDE) Linux desktop
You hear declarations every year about the long-told "year of the Linux desktop" arriving this year
Stick to the Science, the Facts, the Observable Reality [original]
Science is at the heart of this site
New Dell XPS 14 and 16 Announced, Ubuntu Version Coming This Year
Dell has announced the return of its XPS laptop line at CES 2026
The 6 Linux distros I expect to rule 2026 - and why
Which Linux distributions will rise above the competition in 2026 to dethrone the old guard
Free and Open Source Software
This is free and open source software
Kraft 2.0 Announcement
I am very happy to announce the release of version Kraft 2.0.0
Mageia: Happy New Year, 2026
The Mageia team wishes the the whole community a happy 2026 filled with peace
Security Leftovers
Security picks
GNU/Linux Leftovers
GNU/Linux and more
Audiocasts/Shows: This Week in Linux and Late Night Linux
2 new episodes
today's howtos
very few for now
The Crazy Weather is Finished [original]
We wonder how many birds will perish or die due to climate change
Today in Techrights
Some of the latest articles
Firefox Becomes Slop, "Gnome Says No to [Slop] Extensions"
Two articles from Linux Magazine