Feed aggregator

A Bash Script to Read All Command Line Arguments into an Array: Simplify Argument Handling

nixCraft - 7 hours 46 min ago
If you are writing a Bash shell script, you should read command-line arguments into an array for some time. This allows us to process any number of arguments provided when the script is run. This makes the script adaptable to different use cases. Instead of dealing with fixed variables like $1, $2, $3, etc., you can work with any number of arguments more dynamically using bash for loop or bash while loop, depending upon your needs. Arrays make it simple to loop through each argument and perform operations on them, whether basic printing or complex processing. Bash provides a mapfile (readarray command) internal built-in command to read lines from a file into an array variable. Let us see how to use mapfile to read all command line arguments into an array. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post A Bash Script to Read All Command Line Arguments into an Array: Simplify Argument Handling appeared first on nixCraft. 2024-05-07T10:40:08Z 2024-05-07T10:40:08Z Vivek Gite

How to Pin Versions in Yum or Dnf for RHEL or CentOS Linux

nixCraft - 7 hours 46 min ago
CentOS, RHEL (Red Hat Enterprise Linux), Fedora and other clones of RHEL, such as Oracle, Alma, and Rocky, offer support for version pinning. This feature allows developers and system administrators to lock a particular package to a specific version, preventing it from being automatically updated by yum or dnf commands. Sometimes, it is necessary to protect packages from being updated to newer versions to avoid incompatibility issues with your applications. For example, you can lock down PHP version 8.3.6 and avoid using updated PHP version 8.4. Let us see how to lock a package to a specific version, only exclude a package from yum update or dnf update on a CentOS, RHEL, Fedora, and friends. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How to Pin Versions in Yum or Dnf for RHEL or CentOS Linux appeared first on nixCraft. 2024-05-07T09:01:47Z 2024-05-07T09:01:47Z Vivek Gite

How to perform find and replace operations within a visual selection in Vim

nixCraft - 7 hours 46 min ago
Here's a quick tip for vim users. You can perform find and replace operations within a visual selection in Vim for text or code block. Visual selection for finding and replacing text in Vim allows developers and Linux/Unix users precise and efficient text editing. It's handy when you want to change specific portions of text or code blocks within a larger file without affecting other occurrences. This method required to minimizing manual search and reducing the risk of unintended code or text modifications. Let us see how to find and replace in Vim visual mode selection. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How to perform find and replace operations within a visual selection in Vim appeared first on nixCraft. 2024-05-07T06:14:33Z 2024-05-07T06:14:33Z Vivek Gite

How to find hidden processes and ports on Linux/Unix/Windows

nixCraft - 7 hours 46 min ago
Unhide is a little handy forensic tool to find hidden processes and TCP/UDP ports by rootkits / LKMs or by another hidden technique. This tool works under Linux, Unix-like system, and MS-Windows operating systems. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How to find hidden processes and ports on Linux/Unix/Windows appeared first on nixCraft. 2024-05-07T05:05:51Z 2024-05-07T05:05:51Z Vivek Gite

How to add bash auto completion in Debian Linux

nixCraft - 7 hours 46 min ago
Bash is a command language interpreter compatible with sh. It can execute commands read from a file or keyboard. On Debian Linux, bash-completion is a set of shell functions that uses Bash's programmable completion feature. This page provides instructions on installing and enabling Bash auto-completion on Debian Linux versions 10, 11, and 12 to increase productivity by writing custom bash code. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How to add bash auto completion in Debian Linux appeared first on nixCraft. 2024-05-06T15:51:25Z 2024-05-06T15:51:25Z Vivek Gite

How to add cron job entry for acme.sh

nixCraft - 7 hours 46 min ago
Recently, I had a learning experience with cron jobs and acme.sh. acme.sh is an excellent tool that simplifies the management of Let's Encrypt TLS (SSL) certificates. It makes obtaining and renewing these essential security certificates for your web server easier. Recently, I moved my server from Linode to AWS, which was a new environment for me. Initially, everything appeared to be working correctly, and I assumed everything was running smoothly. However, I forgot to migrate the cron job that acme.sh uses to renew the certificate automatically. This oversight caused my Let's Encrypt certificates to expire, resulting in security warnings and potential disruptions for visitors to my website. Opps! Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How to add cron job entry for acme.sh appeared first on nixCraft. 2024-05-03T06:43:12Z 2024-05-03T06:43:12Z Vivek Gite

How to Upgrade Ubuntu 22.04 to 24.04 LTS: A Complete Guide

nixCraft - 7 hours 46 min ago
{nixCraft Patreon supporters content}Below is a sneak peek of this content! Ubuntu 24.04 LTS (Noble Numbat) was launched on April 25th, 2024. This new version will be supported for five years until June 2029. The armhf architecture now provides support for the Year 2038 problem. The upgrades include significant updates to core packages like Linux kernel, systemd, Netplan, […]The post How to Upgrade Ubuntu 22.04 to 24.04 LTS: A Complete Guide appeared first on Opensource Flare✨. 2024-04-26T18:25:08Z 2024-04-26T18:25:08Z Vivek Gite

How to Upgrade Ubuntu 22.04 to 24.04 LTS: A Complete Guide

nixCraft - 7 hours 46 min ago
Ubuntu 24.04 LTS (Noble Numbat) was launched on April 25th, 2024. This new version will be supported for five years until June 2029. The armhf architecture now provides support for the Year 2038 problem. The upgrades include significant updates to core packages like Linux kernel, systemd, Netplan, toolchain upgrades for better development support, enhanced security measures, and performance optimizations. It also has an updated GNOME desktop environment and other default applications. Let us see how to upgrade Ubuntu 22.04 LTS to Ubuntu 24.04 LTS using the CLI over ssh-based session. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How to Upgrade Ubuntu 22.04 to 24.04 LTS: A Complete Guide appeared first on nixCraft. 2024-04-26T08:33:21Z 2024-04-26T08:33:21Z Vivek Gite

How to configure AWS SES with Postfix MTA on Debian Linux

nixCraft - 7 hours 46 min ago
AWS SES (Amazon Simple Email Service) is a cloud-based email-sending service that is both reliable and cost-effective. This service is offered by Amazon Web Services. Postfix is a popular email server for Debian and Unix-like systems. It is an open-source Mail Transfer Agent (MTA) responsible for routing and delivering emails. Debian Linux is a widely used Linux distribution known for its stability and user-friendliness for server usage. Let us see how to integrate AWS SES with the Postfix MTA on Debian Linux version 11/12. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How to configure AWS SES with Postfix MTA on Debian Linux appeared first on nixCraft. 2024-04-19T07:04:06Z 2024-04-19T07:04:06Z Vivek Gite

The repository ‘http://deb.debian.org/debian buster-backports Release’ no longer has a Release file.

nixCraft - 7 hours 46 min ago
When you run the sudo apt update, you may see the following message or error on a Debian Linux: Err:5 http://deb.debian.org/debian buster-backports Release 404 Not Found [IP: 146.75.34.132 80] Reading package lists... Done E: The repository 'http://deb.debian.org/debian buster-backports Release' no longer has a Release file. N: Updating from such a repository can't be done securely, and is therefore disabled by default. N: See apt-secure(8) manpage for repository creation and user configuration details. Here is how to fix this issue. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post The repository ‘http://deb.debian.org/debian buster-backports Release’ no longer has a Release file. appeared first on nixCraft. 2024-04-14T20:42:01Z 2024-04-14T20:42:01Z Vivek Gite

How do I find out my timezone in Linux?

nixCraft - 7 hours 46 min ago
You can find the timezone in Linux using the command line. The easiest way to do this is to type the "timedatectl" command and look for the "timezone" line when using modern Linux distros with systemd. There are other commands and ways to temporarily switch to a new timezone for date calculations. Love this? sudo share_on: Twitter - Facebook - LinkedIn - Whatsapp - Reddit The post How do I find out my timezone in Linux? appeared first on nixCraft. 2024-04-06T01:06:44Z 2024-04-06T01:06:44Z Vivek Gite

7 ways to kick-start back to school using Gemini in Workspace7 ways to kick-start back to school using Gemini in WorkspaceVP

GoogleBlog - Wed, 08/26/2026 - 15:30
Get a jump on this semester by using Gemini in Google Workspace to organize your notes, track deadlines, prep for projects, and more.Get a jump on this semester by using Gemini in Google Workspace to organize your notes, track deadlines, prep for projects, and more.
Categories: Technology

Vanguard Outlook 2026: Financial Advice (Altruist Acquisition), High-Yield Cash, Better Bond Options

MyMoneyBlog.com - Wed, 08/26/2026 - 14:11

Vanguard has been a big part of building my net worth, and I’m always watching to see if they are keeping the culture. Barron’s last week ran the article Vanguard Conquered the ETF World. Where It’s Aiming Next, but it’s probably behind a paywall. Well, the three main areas are high-yield cash savings accounts, financial advice, and fixed-income investing. Let’s explore them all a bit.

Financial advice. I find this the most interesting area of change. Can Vanguard find a way to provide high-quality advice to the masses at a low cost? They have gathered a lot of assets into what they have built already, even though I don’t see it as a high-quality tool yet. Too rigid, and too pricey for what you get.

Vanguard just announced that they are acquiring Altruist, a start-up firm supporting independent financial advisors, for over $4 billion (WSJ gift article, official Vanguard press release). A big move by new CEO Ramji.

“Altruist’s mission to make financial advice more accessible, more affordable, and help advisers scale their practices, that very much rhymes with what we’re trying to do here at Vanguard,” Ramji said. “That’s really how this acquisition was born.”

Will Vanguard work more directly with independent advisors now? Will they successfully incorporate all this new technology and AI stuff into their in-house advice platform? Will it be a shocking amount cheaper than the competition, spreading the “Vanguard Effect” to portfolio management?

High-yield cash savings. I opened a Vanguard Cash Plus Account a while back, but so far it’s been sitting empty. The current yield is 3.35% APY as of 8/24/26, which is okay in the world of online savings accounts but not special. I know it’s FDIC-insured, but personally I feel equally as safe with a Vanguard money market fund, especially those that are 99%+ made of US Treasuries. The Barron’s article suggests that the main purpose for Cash Plus seems to be to draw in new customers that don’t already have a Vanguard brokerage account.

The current 7-day SEC yield (as of 8/24/26) on the default brokerage sweep is Vanguard Federal Money Market Fund (VMFXX) is 3.62% with a compound yield of 3.68% (best comparison to APY). I can do even better with Vanguard Treasury Money Market Fund (VUSXX), which is exempt from state income taxes. There’s also now Vanguard 0-3 Month Treasury Bill ETF (VBIL, see below). All of these options are better than Cash Plus.

Will Vanguard expand back into cash management and checking again? Maybe it’s best they don’t.

Fixed-income investing. This also makes sense, especially with a higher yield environment making people branch out to various bond segments, as with fixed income the easiest way to get a higher return without taking on more risk is to simply lower the expense ratio. The math just maths, for both cash and bonds.

Vanguard’s active bond funds charge an average annual fee of 0.10%, compared with an industry average of 0.45% (excluding Vanguard funds), according to data from Morningstar. And 83% of Vanguard active bond funds beat peer 10-year average returns, according to Morningstar.

VBIL has closed its bid/ask spread gap with SGOV and is now also at 0.01%. So you can trade it easily with minimal loss whenever you want a cash sweep option in any brokerage. On top of that, VBIL expense ratio was lowered 0.06%, while SGOV is still at 0.09%. VBIL is the new SGOV replacement in all my various brokerage spaces.

One of the company’s biggest fund launch success stories is the Vanguard 0-3 Month Treasury Bill ETF (ticker: VBIL), which reached $5 billion in assets less than a year after debuting in February 2025. That makes it the fastest-growing Vanguard ETF—fixed income or equity. Devereux notes that as VBIL grew, the company took a page from its traditional playbook and cut the expense ratio from 0.07% to 0.06%. It’s an example, she says, of how, while a lot is changing at Vanguard, “our core mission and focus on clients aren’t.”

Categories: Finance
Comment