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