📄 change_prefix.sh
字号:
#!/bin/sh# ***************************************************************************# change_prefix.sh : allow to transfer a contrib dir# ***************************************************************************# Copyright (C) 2003 VideoLAN# $Id: change_prefix.sh 6961 2004-03-05 17:34:23Z sam $## Authors: Christophe Massiot <massiot@via.ecp.fr>## This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2 of the License, or# (at your option) any later version.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the# GNU General Public License for more details.## You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.# ***************************************************************************usage="Usage: $0 <directory> <prefix> <new_prefix>"LANG=Cexport LANGif test .$1 = .-h -o .$1 = .--help -o $# != 3; then echo $usage exit 1fitop_dir=`cd $1; pwd`prefix=$2new_prefix=$3if test -z $prefix -o -z $new_prefix; then echo $usage exit 1ficd $top_dirfiles=`find . -type f`for file in $files; do if test ".`file $file | grep Mach-O`" != "." ; then libs=`otool -L $file 2>/dev/null | grep $prefix | cut -d\ -f 1` for i in "" $libs; do if ! test -z $i; then install_name_tool -change $i \ `echo $i | sed -e "s,$prefix,$new_prefix,"` \ $file fi done elif test ".`file $file | grep \"text\|shell\"`" != "." ; then sed -e "s,$prefix,$new_prefix,g" < $file > $file.tmp mv -f $file.tmp $file fidone
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -