firefox/get_profile

6 lines
145 B
Bash
Executable File

#!/bin/bash
find "${HOME}/.mozilla/firefox" -maxdepth 1 -type d -name '*.default' \
| while read dir; do
printf '%s\n' "$dir"
done