home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Welt 2006 November (DVD)
/
PCWELT_11_2006.ISO
/
casper
/
filesystem.squashfs
/
usr
/
share
/
cli-common
/
gac-package-remove
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2006-04-04
|
233 b
|
14 lines
#!/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