Compile dar on OSX 10.4.8
CFLAGS="-DINSTALLPREFIX=/usr/local"
./configure --disable-nls
./make
sudo ./make install
that is all
self, out
CFLAGS="-DINSTALLPREFIX=/usr/local"
./configure --disable-nls
./make
sudo ./make install
that is all
self, out
[vizController bind:@"runData"
toObject:runsController
withKeyPath:@"selection.self"
options:nil];
My RTFM skills lack the voodoo to find where this is documented. Is there perhaps another way?
We know this functionality is there, but often forget.
IF we have a directory full of folders with plone_*
for i in plone_*; do mv $i iavtheme_${i#plone_}; done
will replace plone_ with iavtheme_ for each directory name
See these for other pattern toys (thanks Juan for reminding me of this useful stuff I never seem to use):
${variable%pattern}
Trim the shortest match from the end
${variable##pattern}
Trim the longest match from the beginning
${variable%%pattern}
Trim the shortest match from the end
${variable#pattern}
Trim the shortest match from the beginning