AI-powered service management for IT and enterprise teams
Enterprise-grade ITSM, for every business
Give your IT, operations, and business teams the ability to deliver exceptional services—without the complexity. Maximize operational efficiency with refreshingly simple, AI-powered Freshservice.
Try it Free
Try Google Cloud Risk-Free With $300 in Credit
No hidden charges. No surprise bills. Cancel anytime.
Use your credit across every product. Compute, storage, AI, analytics. When it runs out, 20+ products stay free. You only pay when you choose to.
Shell script to run a command for many files selected with wildcards
...wildcards to allow inserting matched strings like Windows 'copy *.old =.new'
Some examples:
# Rename current files as old
doall 'mv *.cur *.old'
# Compress camcorder DV files
doall 'ffmpeg -i *.dv *.mp4'
# Move files into directories according to their extension
doall 'mv *.* $2/$1.$2'
# Symbolic links from vmlinuz.new to vmlinuz-5.12.6-foo, similarly config.new System.map.new
doall 'ln -s /boot/*-5.12.6-* /boot/$1.new'
# Hard link 3-character abbreviations for file extensions
doall 'ln *.???* $1.$2'
As shown above, instead of '=' to indicate insertions, doall uses either * or $1 etc.
...
sh script for collecting system basic OS and hardware information
Sh script that collects system information about OS and hardware using standard built-in system utilities and presents collected info as detailed report.
Collected info:
System type, kernel version, system release, number of CPUz/cores, memory, filesystem, bios info.
Linux-FEUDS stands for "Linux-Fedora Easy to Use Desktop Scripts". It is a collection of scripts that simplify the configuration of your desktop and various essentials components.