OLD | NEW |
---|---|
(Empty) | |
1 #!/bin/bash | |
2 # Copyright (c) 2009-2010 The Chromium OS Authors. All rights reserved. | |
3 # Use of this source code is governed by a BSD-style license that can be | |
4 # found in the LICENSE file. | |
5 | |
6 # dev-mode functionality for chrosh | |
7 | |
8 if [ "$(basename $0)" == "crosh-dev" ]; then | |
9 exec "$(dirname $0)/crosh --dev" | |
10 fi | |
11 | |
12 DEV_HELP=' | |
13 shell | |
14 Open a command line shell. | |
15 ' | |
16 | |
17 HELP="$HELP$DEV_HELP" | |
18 | |
19 function cmd_shell() { | |
20 bash | |
21 } | |
OLD | NEW |