├── 0x01-git ├── c │ └── c_is_fun.c ├── .gitignore ├── up_to_date ├── bash │ ├── alx │ └── school └── README.md └── README.md /0x01-git/c/c_is_fun.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /0x01-git/.gitignore: -------------------------------------------------------------------------------- 1 | ~* 2 | -------------------------------------------------------------------------------- /0x01-git/up_to_date: -------------------------------------------------------------------------------- 1 | git pull 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | **This file is mandatory in all ALX School projects** 2 | -------------------------------------------------------------------------------- /0x01-git/bash/alx: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | echo "ALX School is so cool!" 4 | -------------------------------------------------------------------------------- /0x01-git/bash/school: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | echo "The school is open!" 4 | -------------------------------------------------------------------------------- /0x01-git/README.md: -------------------------------------------------------------------------------- 1 | ## updated 2 | **This file is mandatory in all ALX School projects** 3 | --------------------------------------------------------------------------------