pip install faker
vim ~/faker_for_testing.py
Hit i
Paste these
from faker import Faker
fake = Faker()
for _ in range(10):
print(fake.name())
print(fake.email())
print(fake.phone_number())
print('\n')
Hit Esc + w + q and Enter
vim ~/.zshrc
Hit: Shift + G Press: O for new line( O for orange. not zero haha)
Add:
alias fake="python ~/faker_for_testing.py"
Hit Esc + w + q and Enter
Refresh terminal
source ~/.zshrc
now enter fake
in your terminal.