projects
/
cycript.git
/ blame_incremental
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(non-incremental) |
history
|
HEAD
Support initializing character array using string.
[cycript.git]
/
dpkg-deb.sh
This page requires JavaScript to run. Use
this page
instead.
0 / 9 ( 0%)
Commit
Line
Data
1
#!/bin/bash
2
flags=()
3
for Z in lzma bzip2 gzip; do
4
if dpkg-deb -Z"$Z" -h &>/dev/null && which "$Z" &>/dev/null; then
5
flags+=(-Z"$Z")
6
break
7
fi
8
done
9
fauxsu dpkg-deb "${flags[@]}" "$@"