Skip to content

Instantly share code, notes, and snippets.

View flipphillips's full-sized avatar

Flip Phillips flipphillips

View GitHub Profile
@flipphillips
flipphillips / setupNukeDev.sh
Created February 11, 2024 16:42
nuke plugin subdirectory creator
#!/bin/bash
NUKE_DIR="$HOME/.nuke"
PYTHON_DIR="$NUKE_DIR/python"
GIZMOS_DIR="$NUKE_DIR/gizmos"
PLUGINS_DIR="$NUKE_DIR/plugins"
INIT_FILE="$NUKE_DIR/init.py"
# Create .nuke directory if it doesn't exist
if [ ! -d "$NUKE_DIR" ]; then