Skip to main content

Linux commands Top 10 |rm/rm-f/ls-a/rm-r/touch/ls*a|T|most used linux commands in Devops 2020|

 Linux commands Top 10 |rm/rm-f/ls-a/rm-r/touch/ls*a|T|most used linux commands in Devops 2020|


what is linux why we need to use linux some basic commands how to create files and directories cat : cat command allows us to create single or multiple files, view contain of file,concatenate files and redirect output in terminal or files concatenate files and redirect output in terminal or files.

echo "hi" filename echo "end" filename ">" =overide redirect the output on to the file "<"=append the output onto the file ctrl+d head =is used for displaying the contents of the file from top to by default 10 lines

head -n filename = n lines from top use tail : tail is especially used to see log files of an application. tail filename = displays the bottom 10 lines of the file tail -n filename=display n lines from the bottom tail -10f filename = file stands for float on the file. display the flow of output from the file. file filename = shows the type of the file stat filename = gives statics about the file like name,size, blocks, created and modified.

Comments

Popular posts from this blog

Linux cmp and diff commands|Linux commands for devops |difference between cmp and diff

Linux cmp and diff commands|Linux commands for devops |difference between cmp and diff CMP = command is used for comparing the byte by byte of text information of a file and outputs the first difference of the file. cat list1.txt green blue yellow white cat list2.txt green blue black white cmp list1.txt list2.txt output:- list1.txt list2.txt differ: byte 6, line 2 ------------------------------------------------------------------------------------------------------------------------------------- diff = it is used for comparting two text files and displays all the mis-matches in the files. In addition it displays special symbols helping us in understanding what we should do to make those two files identical. a = add c = change the text of the file d = delete line In addition to this it displays the mis-match lines with notation. = indicates the right side file = indicates suggestion should be applied to left side file 2,5c3 =in the left file from 2 - 5 lines should be replaced ...

Record script using bad boy tool 2020|Jmeter script recording using badboy tool and validate script|

Apache JMeter Script Recording with BadBoy|How to Record script using BadBoy tool|  Download tool :https://badboy1.software.informer.com/download/ Recordig using bad boy tool  using for mostly .net and java applications there are 3 steps to actually getting a load test running with Badboy: 1. Recording your script. 2.Parametrizing your script with a lot of users and their associated user information,  and setting think times in the script. 3.Running the script with all your users, and gathering and analyzing the results,  hopefully in a graph format.