Implementation of linux commands to learn C
Once you get the repository, execute the build file to generate bin folder with executable commands.
chmod +x build
./build
This will build all binaries or executables stored in bin folder.
gcc <command.c> -o <command>
eg.
gcc date.c -o ../bin/date
./cat
./date
./dir
./free
./hostname
./id
./ls
./mv <source file> <target location with file name>
./nslookup <web address>
./pwd
./rm <file name>
./rmdir <directory name>
./sleep <seconds>
./tty
./uname
./uptime
./w
./wc
./whoami
./who
./yes
MIT 2018