mirror of
https://github.com/avatao-content/test-tutorial-framework
synced 2025-01-15 22:41:56 +00:00
8 lines
93 B
Bash
8 lines
93 B
Bash
|
pushd() {
|
||
|
command pushd "$@" > /dev/null
|
||
|
}
|
||
|
|
||
|
popd() {
|
||
|
command popd "$@" > /dev/null
|
||
|
}
|