Skip to content

Instantly share code, notes, and snippets.

@vncsna
Last active February 3, 2024 14:13
Show Gist options
  • Save vncsna/1925aeef4e6c8e7147fce75d207e21bd to your computer and use it in GitHub Desktop.
Save vncsna/1925aeef4e6c8e7147fce75d207e21bd to your computer and use it in GitHub Desktop.
Find icons by name in linux
#!/bin/bash
icon_name="$1"
icon_directory="/usr/share/icons"
find "$icon_directory" -name "*$icon_name*"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment