Skip to content

Instantly share code, notes, and snippets.

@cdelashmutt-pivotal
Created July 7, 2020 16:15
Show Gist options
  • Save cdelashmutt-pivotal/57b2a0583f612817b374397fb864f91f to your computer and use it in GitHub Desktop.
Save cdelashmutt-pivotal/57b2a0583f612817b374397fb864f91f to your computer and use it in GitHub Desktop.
One liner for deleting all the apps in the current space
cf apps | tail +5 | cut -d ' ' -f1 | xargs -n1 -I{} cf d {} -f -r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment