File: remove_rpath.sh

package info (click to toggle)
gpsd 2.33-4
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 2,900 kB
  • ctags: 1,861
  • sloc: ansic: 14,508; sh: 9,158; xml: 2,657; python: 1,446; makefile: 334; cpp: 120; perl: 22
file content (7 lines) | stat: -rw-r--r-- 109 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
#! /bin/sh

while [ "x$1" != "x" ]
do
	chrpath --list $1 > /dev/null 2>&1 && chrpath --delete $1
	shift
done