LinuxBasicCommand
Task: What is the Linux command to
To view what's written in a file. >cat <file_name> cat name_file.sh
#!/bin/bash NAME="john" echo $NAME echo "$NAME" echo "${NAME}!"
To change the access permissions of files. By using "chmod" command we can chang...
ayshkatheria.hashnode.dev1 min read