Answers for "change a directory using shell script"

0

bash script change directory run a command

#!/bin/sh
cd "$1" && shift && "$@"
Posted by: Guest on April-24-2020
0

bash change and make directory

function mkdcd () {
     mkdir "$1" && cd "$1"
 }
Posted by: Guest on December-31-2021

Code answers related to "change a directory using shell script"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language