I am using the following 2 commands to create a 0B file and set its extn to 644
touch filename.ext chmod 777 filename.txt
My question is that w
You can create your own command:
create () { touch "$1" chmod "$2" "$1" } create filename.ext 644