TipsMake
Newest

Program - Page 45

Learn basic programming with C, C++, Python, JavaScript, PHP, CSS, HTML5 programming languages. You can also find tutorials on databases, SQL Server here.

Online Repository in Git
25 May 2019

Online Repository in Git

GitHub is a social network for programmers for software development projects using git revision management system. It also has a standard GUI application for direct download

Operating Rename in Git
25 May 2019

Operating Rename in Git

So far, both Tom and Jerry are using manual commands to compile their projects. Now, Jerry decided to create a Makefile for the project and also put a name for the file string.c.

Delete operation in Git
25 May 2019

Delete operation in Git

Tom updates the local repository and finds the compiled binary in the src directory. After observing the commit message, he realizes that this code is added by Jerry.

Fixed a bug in Git
25 May 2019

Fixed a bug in Git

Being human, everyone makes mistakes. So each VCS provides a feature to fix errors at some point. Git provides a feature that we can use to undo the modifications made on the

Tag operation in Git
25 May 2019

Tag operation in Git

Tag operation allows to provide meaning names for specific versions in the repository. Suppose Tom and Jerry decide to tag them into their project code so that they can then

Patch operation in Git
25 May 2019

Patch operation in Git

The patch is a text file, its content is similar to git diff, but in parallel with the code, it also has metadata about commits such as commit IDs, dates, commit messages ... We

Managing branches in Git
25 May 2019

Managing branches in Git

Branch operations allow creating different routes of development. We can use this activity to branch the development process into two different directions. For example, we

Conflict handling in Git
25 May 2019

Conflict handling in Git

Jerry is working on the wchar_support branch. He changes the name of the feature and after checking, he repository his changes.

Different Platforms in Git
25 May 2019

Different Platforms in Git

GNU / Linux and Mac OS use line-feed (LF), or a new line when line-ending characters while Windows uses line-feed combination and carriage-return (LFCR) to signify The ending of

Flow control in Shell
25 May 2019

Flow control in Shell

While writing a Shell script, there may be a situation when you need to follow an external path 2 provided. So you need to create usage of conditional commands that allow your

Loop in Unix / Linux
25 May 2019

Loop in Unix / Linux

A loop is a program that has powerful features, allowing you to repeat a set of commands. In this chapter, you will learn through practical examples of loops contained in shell

Control loop in Unix / Linux
25 May 2019

Control loop in Unix / Linux

The previous chapter has been shown how to create loops and work with them to perform various tasks. Sometimes you need to stop a loop or continue their repetitive process.

Shell replacement
25 May 2019

Shell replacement

Shell does the magic when it encounters an expression that contains one or more special characters.

Techniques cited in Unix / Linux
25 May 2019

Techniques cited in Unix / Linux

Shell provides a variety of characters that have special meaning while using them in any Shell script and cause a limit of a word unless quoted.

Navigation IO in Unix / Linux
25 May 2019

Navigation IO in Unix / Linux

Most Unix system commands receive input from your terminal and send the output back to your terminal. A command usually reads its input from a location called standard input,

Shell functions
25 May 2019

Shell functions

Functions allow you to streamline an overall feature of a script into a smaller and more logical part that can perform the same function whenever it is needed through the function

ManPage Help in Unix
25 May 2019

ManPage Help in Unix

All Unix commands come with arbitrary and mandatory functions. It is very common when you forget the full syntax of these commands.

The while loop in Shell
25 May 2019

The while loop in Shell

The while loop gives you the ability to execute a set of repetitive commands until certain conditions occur. It is often used when you need to manipulate iterative variable

For loop in Shell
25 May 2019

For loop in Shell

The for loop works on lists of items (items). It repeats a set of commands for each item in a list.

Until loop in Shell
25 May 2019

Until loop in Shell

The while loop is perfect for the situation where you want to execute a set of commands while some conditions are true. Sometimes you need to execute a set of commands until a