Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

How to change directory in bash

# The layout of your terminal should have a format of the following
[Drive]:/[User]/[Folder]/[So on and so forth]

# Example:

C:/Oyster/Desktop

# In order to change your directory, you use command: "cd" and then either input the new directory or the name of your next subdirectory (just the name of the folder)

# Example:

# Input:
C:/Oyster/ - $> cd Desktop

# Output:
C:/Oyster/Desktop - $>
Comment

bash change and make directory

function mkdcd () {
     mkdir "$1" && cd "$1"
 }
Comment

PREVIOUS NEXT
Code Example
Shell :: start with in shell script 
Shell :: linux record camera 
Shell :: adonis run specific seeder 
Shell :: update git using bash 
Shell :: sudo: add-apt-repository: command not foun 
Shell :: install youtube-dl on ubuntu 20.04 
Shell :: brew install kubectl specific version 
Shell :: install cockroachdb linux 
Shell :: ansible become_method sudo example 
Shell :: wsl linux compress siez 
Shell :: !g how to uninstall tor linux installed from source code 
Shell :: how to sync my directory with my deleted file change 
Shell :: failed at the node-sass@4.13.1 postinstall script. 
Shell :: list directory xargs linux 
Shell :: linux borrar configuracion residual 
Shell :: react router dom 
Php :: php cors disable 
Php :: laravel back button 
Php :: composer update memory limit 
Php :: add new column in laravel migration 
Php :: read json file data using php 
Php :: use str laravel 
Php :: php object to array 
Php :: laravel where created_at today 
Php :: a2dismod 
Php :: php if no imagee exists 
Php :: content-type application/json php 
Php :: brew switch php version 
Php :: curl follow redirect php 
Php :: php referral 
ADD CONTENT
Topic
Content
Source link
Name
5+9 =