Is it possible to use what would normally be included in ansible_facts
in an Ansible adhoc command?
For example, I have a file at /tmp/myFile
on all of my servers and I'd like to do:
ansible all -i [inventory file] -m fetch -a "src=/tmp/myFile dest=myFile-[insert ansible_hostname here]"
Without having to make a whole playbook for it.