Add uuid4 function to my bash aliases

このコミットが含まれているのは:
Noah 2017-06-09 10:18:22 -07:00
コミット ab530445e7

ファイルの表示

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