├── .DS_Store ├── .idea ├── .gitignore ├── BigDataScript.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── docs ├── create_redirects.sh ├── index.html └── manual │ ├── 404.html │ ├── index.html │ └── site │ ├── 404.html │ ├── about │ └── index.html │ ├── bds │ └── index.html │ ├── bds_vm │ └── index.html │ ├── bdscmdline │ └── index.html │ ├── bdsconfig │ └── index.html │ ├── building_bds │ └── index.html │ ├── checkpoints │ └── index.html │ ├── cleanup │ └── index.html │ ├── cloud_aws │ └── index.html │ ├── cmdline │ └── index.html │ ├── data_types │ └── index.html │ ├── debugger │ └── index.html │ ├── dep_op │ └── index.html │ ├── download │ └── index.html │ ├── functions │ └── index.html │ ├── global_vars │ └── index.html │ ├── goal │ └── index.html │ ├── hello │ └── index.html │ ├── help │ └── index.html │ ├── index.html │ ├── language │ └── index.html │ ├── par │ └── index.html │ ├── pipelines │ └── index.html │ ├── remote_files │ └── index.html │ ├── special │ └── index.html │ ├── sys │ └── index.html │ ├── task │ └── index.html │ ├── task_aws │ └── index.html │ ├── task_detached │ └── index.html │ ├── task_imp │ └── index.html │ ├── test_cases │ └── index.html │ └── wait │ └── index.html └── git ├── commit ├── release ├── update └── update_force /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/.DS_Store -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/BigDataScript.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/.idea/BigDataScript.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/README.md -------------------------------------------------------------------------------- /docs/create_redirects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/create_redirects.sh -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/manual/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/404.html -------------------------------------------------------------------------------- /docs/manual/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/index.html -------------------------------------------------------------------------------- /docs/manual/site/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/404.html -------------------------------------------------------------------------------- /docs/manual/site/about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/about/index.html -------------------------------------------------------------------------------- /docs/manual/site/bds/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/bds/index.html -------------------------------------------------------------------------------- /docs/manual/site/bds_vm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/bds_vm/index.html -------------------------------------------------------------------------------- /docs/manual/site/bdscmdline/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/bdscmdline/index.html -------------------------------------------------------------------------------- /docs/manual/site/bdsconfig/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/bdsconfig/index.html -------------------------------------------------------------------------------- /docs/manual/site/building_bds/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/building_bds/index.html -------------------------------------------------------------------------------- /docs/manual/site/checkpoints/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/checkpoints/index.html -------------------------------------------------------------------------------- /docs/manual/site/cleanup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/cleanup/index.html -------------------------------------------------------------------------------- /docs/manual/site/cloud_aws/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/cloud_aws/index.html -------------------------------------------------------------------------------- /docs/manual/site/cmdline/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/cmdline/index.html -------------------------------------------------------------------------------- /docs/manual/site/data_types/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/data_types/index.html -------------------------------------------------------------------------------- /docs/manual/site/debugger/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/debugger/index.html -------------------------------------------------------------------------------- /docs/manual/site/dep_op/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/dep_op/index.html -------------------------------------------------------------------------------- /docs/manual/site/download/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/download/index.html -------------------------------------------------------------------------------- /docs/manual/site/functions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/functions/index.html -------------------------------------------------------------------------------- /docs/manual/site/global_vars/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/global_vars/index.html -------------------------------------------------------------------------------- /docs/manual/site/goal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/goal/index.html -------------------------------------------------------------------------------- /docs/manual/site/hello/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/hello/index.html -------------------------------------------------------------------------------- /docs/manual/site/help/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/help/index.html -------------------------------------------------------------------------------- /docs/manual/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/index.html -------------------------------------------------------------------------------- /docs/manual/site/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/language/index.html -------------------------------------------------------------------------------- /docs/manual/site/par/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/par/index.html -------------------------------------------------------------------------------- /docs/manual/site/pipelines/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/pipelines/index.html -------------------------------------------------------------------------------- /docs/manual/site/remote_files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/remote_files/index.html -------------------------------------------------------------------------------- /docs/manual/site/special/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/special/index.html -------------------------------------------------------------------------------- /docs/manual/site/sys/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/sys/index.html -------------------------------------------------------------------------------- /docs/manual/site/task/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/task/index.html -------------------------------------------------------------------------------- /docs/manual/site/task_aws/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/task_aws/index.html -------------------------------------------------------------------------------- /docs/manual/site/task_detached/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/task_detached/index.html -------------------------------------------------------------------------------- /docs/manual/site/task_imp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/task_imp/index.html -------------------------------------------------------------------------------- /docs/manual/site/test_cases/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/test_cases/index.html -------------------------------------------------------------------------------- /docs/manual/site/wait/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/docs/manual/site/wait/index.html -------------------------------------------------------------------------------- /git/commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/git/commit -------------------------------------------------------------------------------- /git/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/git/release -------------------------------------------------------------------------------- /git/update: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | # ./scripts/clean.sh 4 | 5 | git pull 6 | 7 | -------------------------------------------------------------------------------- /git/update_force: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcingola/BigDataScript/HEAD/git/update_force --------------------------------------------------------------------------------