| Linux webhost1.zalaszam.hu 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 Path : /usr/share/cli-common/ |
| Current File : //usr/share/cli-common/gac-package-remove |
#!/bin/bash
for file in /usr/share/cli-common/runtimes.d/*
do
if [ -x $file ]; then
# Figure out the formal name
F="$($file name)"
# Remove it
echo "Removing $1 from $F"
$file remove $1
fi
done