#bash
Read more stories on Hashnode
Articles with this tag
Consider we are having this set of files, #!/bin/sh declare -A dictionary FILES=`ls *.xml` for FILE in ${FILES} do IFS='_' read -r -a array <<<...
DNS lookup utility used for performing DNS lookups. It is normally used to convert names to IP addresses and vice versa · host - DNS lookup utility used...
built-in command of bash which is used to maintain a hash table of recently executed programs · hash - built-in command of bash which is used to maintain...
checksum and count the bytes in a file. · cksum - checksum and count the bytes in a file. cksum command in Linux is used to display a cyclic redundancy...
display a line of text · echo - display a line of text. 1. $ echo "Welcome to Linux" 2. To enable the interpretation of backslash escapes -e option ...
a block-sorting file compressor · bunzip2 - a block-sorting file compressor 1. To compress file input.txt it deletes original $ bzip2 -z input.txt will...