Codebase list rust-stfu8 / 96f26008-241c-44f7-97cf-b16432225604/main dev / list-binpkgs.sh
96f26008-241c-44f7-97cf-b16432225604/main

Tree @96f26008-241c-44f7-97cf-b16432225604/main (Download .tar.gz)

list-binpkgs.sh @96f26008-241c-44f7-97cf-b16432225604/mainraw · history · blame

1
2
3
4
5
6
7
#!/bin/sh
# List all packages that produce rust binaries, from this repo.
grep -l "\[packages.bin\]" src/*/debian/debcargo.toml \
  | cut -d/ -f2 \
  | sed -e 's/^/rust-/g' \
  | tr '\n' ',' \
  | sed -e 's/,$/\n/'