Skip to content

Instantly share code, notes, and snippets.

@mizner
Created March 17, 2018 22:59
Show Gist options
  • Select an option

  • Save mizner/b92f791b99ce21a63e153a470407348c to your computer and use it in GitHub Desktop.

Select an option

Save mizner/b92f791b99ce21a63e153a470407348c to your computer and use it in GitHub Desktop.
Bash, if directory exists (with fake ternary)
#!/bin/bash
source ./.env
themes_path=./$dir_wp_content/themes
has_theme_subdirectories=`find $themes_path -maxdepth 1 -type d | wc -l`
[[ has_theme_subdirectories -eq 1 ]] && themes_installed=false || themes_installed=true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment