forked from facebook/PathPicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
108 lines (100 loc) · 4.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<!--
/**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
-->
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Facebook / Peter Cottle">
<meta property="og:title" content="Facebook PathPicker"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="https://facebook.github.io/pathpicker/" />
<meta property="og:image" content="https://camo.githubusercontent.com/527a8ef1fee7b0854490b36a88496b686b156aad/68747470733a2f2f61736369696e656d612e6f72672f612f31393531392e706e67" />
<meta property="og:description" content="PathPicker is a command line tool to easily select files from piped input."/>
<meta name="description" content="PathPicker is a command line tool to easily select files from piped input."/>
<link rel="icon" href="assets/favicon.ico">
<title>Facebook PathPicker</title>
<!-- Bootstrap core CSS -->
<link href="assets/bootstrap.min.css" rel="stylesheet">
<!-- our overrides -->
<link href="assets/launch_page.css" rel="stylesheet">
</head>
<body cz-shortcut-listen="true">
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="https://facebook.github.io/pathpicker/">Facebook PathPicker</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">About</a></li>
<li><a href="https://github.com/facebook/pathpicker/">GitHub</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<div class="jumbotron pathPickerHeader">
<div class="container">
<div class="heading">
<h1>Facebook PathPicker</h1>
<p class="lead">Why Pipe when you can Pick?</p>
</div>
<div class="callToAction">
<pre>brew update; brew install fpp; fpp</pre>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-6">
<h2>Any Input</h2>
<p>
PathPicker accepts a wide range of input -- output from git commands, grep results, searches -- pretty much anything.
</p>
<p>
After parsing the input, PathPicker presents you with a nice UI to select which files you're interested in. After that
you can open them in your favorite editor or execute arbitrary commands.
</p>
<p><a class="btn btn-success" href="https://github.com/facebook/pathpicker/" role="button">More on GitHub »</a></p>
</div>
<div class="asciiDemo col-md-6">
<script type="text/javascript" src="https://asciinema.org/a/19519.js" id="asciicast-19519" async>
</script>
</div>
</div>
<div style="margin-top: 80px"></div>
<div class="row">
<div class="asciiDemo extraHeight col-md-6">
<script type="text/javascript" src="https://asciinema.org/a/19520.js" id="asciicast-19520" async></script>
</div>
<div class="col-md-6">
<h2>Arbitrary Commands</h2>
<p>
Besides opening files in your editor, PathPicker also allows you to execute arbitrary commands with the selected
files.
</p>
<p>
You can use your selection to add files to version control, change permissions, scp, delete -- pretty much
whatever you want!
</p>
<p><a class="btn btn-success" href="https://github.com/facebook/pathpicker/" role="button">More on GitHub »</a></p>
</div>
</div>
</div>
</body>
</html>