aboutsummaryrefslogtreecommitdiff
path: root/shufEmoji.sh
blob: 04dbc07732da8131bff1b31143a28d6fd0c9ed44 (plain)
1
2
3
4
5
6
7
#!/bin/sh

# Echoes some random emojis

file="$XDG_CONFIG_HOME/emoji"
count=$1
cut -d' ' -f1 < "$file" | shuf -n "$count" | tr -d '\n'