What is the way to pass parameter into dependent tasks in Airflow? I have a lot of bashes files, and i\'m trying to migrate this approach to airflow, but i don\'t know how t
I think Airflow is not for managing state. You should use a DB for tasks to exchange state.
Check out XComs - http://airflow.incubator.apache.org/concepts.html#xcoms. These are used for communicating state between tasks.