├── 0x01-git ├── bash │ ├── 98 │ ├── school │ ├── alx │ └── .alx.swp ├── c │ └── c_is_fun.c ├── .gitignore ├── up_to_date └── README.md └── README.md /0x01-git/bash/98: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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 | I'm a software engineer 2 | -------------------------------------------------------------------------------- /0x01-git/README.md: -------------------------------------------------------------------------------- 1 | My second readme 2 | -------------------------------------------------------------------------------- /0x01-git/bash/school: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | The school is open! 3 | -------------------------------------------------------------------------------- /0x01-git/bash/alx: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "ALX School" 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /0x01-git/bash/.alx.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victor0089/alx-pre_course/HEAD/0x01-git/bash/.alx.swp --------------------------------------------------------------------------------