1
0

Add uuid4 function to my bash aliases

This commit is contained in:
Noah 2017-06-09 10:18:22 -07:00
parent c0d24d197f
commit ab530445e7

View File

@ -49,3 +49,8 @@ rgit() {
echo
done
}
# Generate a random UUID4 string.
uuid4() {
python -c "import uuid; print(str(uuid.uuid4()))"
}