This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Zacharias Knudsen <[email protected]> | |
pkgname=gog-unreal-tournament-goty | |
pkgver=2.0.0.5 | |
pkgrel=4 | |
pkgdesc="Unreal Tournament (99): Game of the Year Edition. GOG Version." | |
arch=('x86_64') | |
url="https://www.gog.com/game/unreal_tournament_goty" | |
license=('custom') | |
depends=('lib32-sdl' | |
'lib32-libgl') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Rename ".wmv" files in all subdirectories to "_.wmv" | |
find . -name '*.wmv' -exec sh -c 'mv "$0" "${0%.wmv}_.wmv"' {} \; -exec echo {} \; |