Skip to content

Instantly share code, notes, and snippets.

View blizzz's full-sized avatar

Arthur Schiwon blizzz

  • Milky Way
View GitHub Profile
@blizzz
blizzz / occ
Last active April 9, 2025 20:33
shortcut for "sudo -u http php[vv] occ"
#!/usr/bin/env bash
# Require: run from a Nextcloud root dir
if [ ! -f lib/versioncheck.php ]; then
echo "Enter the Nextcloud root dir first" > /dev/stderr
exit 255;
fi
# Test general php bin first
if php lib/versioncheck.php 1>/dev/null ; then