Skip to content

Instantly share code, notes, and snippets.

@Adobels
Created November 29, 2022 15:46
Show Gist options
  • Save Adobels/0ff6a4f8f5528cc2578591db09fca7f5 to your computer and use it in GitHub Desktop.
Save Adobels/0ff6a4f8f5528cc2578591db09fca7f5 to your computer and use it in GitHub Desktop.
Terminal: find file names with xib extension and get only file name component
find . -type f -name '*.xib' | rev | cut -d '/' -f1 | rev | cut -d '.' -f1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment