Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(457)

Side by Side Diff: bin/crosh-dev

Issue 2733001: initial add of chromeos shell and cros-term (Closed) Base URL: ssh://git@chromiumos-git//window_manager.git
Patch Set: chmod +x cros-term Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« bin/crosh ('K') | « bin/crosh ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« bin/crosh ('K') | « bin/crosh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698