mirror of
https://github.com/avatao-content/test-tutorial-framework
synced 2024-11-15 05:27:18 +00:00
8 lines
93 B
Bash
8 lines
93 B
Bash
|
pushd() {
|
||
|
command pushd "$@" > /dev/null
|
||
|
}
|
||
|
|
||
|
popd() {
|
||
|
command popd "$@" > /dev/null
|
||
|
}
|