Have you ever needed to copy specific files from a series of directories that match a certain pattern? If so, here’s a shell command that might be just what you need!
1 2 3 4 |
find . -type d -name 'AXR*' -exec find {} -type f \; | while read -r file; do cp "$file" ./tmp/$(basename "$file") done |
🔍 Here’s What This Command Does: find . -type d -name ‘AXR*’ -exec find {} -type f \;: This part of the command…
Leggi tutto
Upgrading OpenSSH server on your Ubuntu distribution manually can be necessary when the default repositories do not provide the latest version. Follow these steps to manually upgrade OpenSSH server on Ubuntu. Step 1: Download the Latest Version First, download the latest version of OpenSSH:
1 |
wget https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-9.8p1.tar.gz |
Step 2: Remove the Existing Installation Stop the current SSH…
Leggi tutto
How to Convert a PFX Certificate to PEM and Extract the CRT File In this article, I will show you how to convert a PFX certificate to PEM format and extract the CRT file using OpenSSL. Follow these simple steps to complete the operation. 1. Extract the Private Key from the PFX File First, we…
Leggi tutto
BasicAuth for Microsoft Office365 is deprecated. But if you have a WebDav share in your lan that use the user/password auth method you can add your domain to a “BasicAllowList” on your Office settings. To add your domain in your Office365 you need to edit your Windows Registy via regEdit. Suppose you have Xtumble as…
Leggi tutto
After updating our XtumbleRetail application to the iOS 16.4 SDK version and starting publishing on the Apple Store, Apple’s developer portal offered us a new publishing platform available…. VisionOS. Embarcadero Delphi proves to be an increasingly key tool for us, with a single code we are able to publish on all platforms. And for…
Leggi tutto
Configure access point WiFi in minutes