Skip to content

Instantly share code, notes, and snippets.

@BillFleming
BillFleming / PKGBUILD
Last active November 7, 2020 21:10
UT99 ImprovedMakePKG
# Maintainer: Zacharias Knudsen <zachasme@gmail.com>
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')
@BillFleming
BillFleming / renameWMV.sh
Created December 1, 2019 23:48
Scripts to rename ".wmv" files in a game's subdirectories.
#!/bin/bash
# Rename ".wmv" files in all subdirectories to "_.wmv"
find . -name '*.wmv' -exec sh -c 'mv "$0" "${0%.wmv}_.wmv"' {} \; -exec echo {} \;