终端定时任务 开始缓冲_如何开始使用终端以提高生产力

终端定时任务 开始缓冲

by Luciano Strika

通过卢西亚诺·斯特里卡(Luciano Strika)

如何开始使用终端以提高生产力 (How to start using the terminal to be more productive)

As developers, the terminal can be our second home.

作为开发人员,码头可以成为我们的第二故乡。

However, we can’t use it until we learn how to, and need to practice using it to learn, really — it’s a catch-22!

但是,只有在我们学习如何使用它之前,我们才能使用它,并且需要练习使用它来学习,这确实是一个陷阱-22!

I hope this introduction will solve that puzzle for you. I want to help you start making use of the terminal right away.

我希望本文能为您解决这个难题。 我想帮助您立即开始使用终端。

入门 (Getting Started)

I’ll cover the basics first, so if you know all the things in this article stay tuned for the next ones, where I’ll tackle more advanced topics.

我将首先介绍基础知识,因此,如果您知道本文中的所有内容,请继续关注下一篇,我将在其中讨论更高级的主题。

With that taken care of, I’ll start from the very beginning. If you’re on Ubuntu, all you have to do to open your terminal is press ctrl+alt+. On a Mac, you should press cmd+spacebar, start typing terminal and press enter when the option appears.

处理完这些后,我将从头开始。 如果您使用的是Ubuntu,则只需按ctrl + alt +即可打开终端 在Mac上,您应该按cmd +空格键,开始输入终端 ,然后在出现选项时按Enter。

In both cases, you should see a dark background with your username followed by your computer’s name (in Linux) or the reverse order (in a Mac).

在这两种情况下,您都应该看到黑色背景,其中包含用户名,后跟计算机名称(在Linux中)或相反的顺序(在Mac中)。

I strongly advise you to open your own terminal and try these commands out on an empty directory, to see for yourself and get the hang of them.

我强烈建议您打开自己的终端,并在一个空目录中尝试这些命令,以亲自看看并掌握其中的内容。

You’ll see a prompt inviting you to type commands. To enter a command just type it down and press enter. Some navigation commands are:

您会看到一个提示,邀请您键入命令。 要输入命令,只需将其键入,然后按Enter。 一些导航命令是:

cd:移动工作目录。 (cd : Moving your working directory.)

cd <relative path>

This will make your terminal point to a different directory, from which you can run new commands. For instance, if you’re in a folder called animals with three folders cats, dogs, and turtles, you’d run

这将使您的终端指向另一个目录,您可以从中运行新命令。 例如,如果您位于一个名为动物的文件夹中,而这三个文件夹为catdogs 海龟 ,你会跑

cd turtles

to move into that directory. To move up one level from the current directory (e.g., moving back to animals from turtles), hit

移到该目录。 要从当前目录上移一个级别(例如,从海龟移回动物 ),请点击

cd ..

mkdir并触摸:创建文件夹或文件。 (mkdir and touch: Creating folders or files.)

If you need to create a new, empty directory, all you have to do is run

如果您需要创建一个新的空目录,则只需运行

mkdir <directory name>

Whereas running

而跑步

touch <file_name>

will create an empty file in the current working directory, with the first argument as its name.

将在当前工作目录中创建一个空文件,并将第一个参数作为名称。

If another file with the given name already existed, this will only update the file’s last update date. It will not make any changes to its content.

如果已经存在具有给定名称的另一个文件,则只会更新文件的最后更新日期。 它不会对其内容进行任何更改。

‘But could I possibly know if the file exists?!’ You ask. Well, I’m glad you’re asking.

“但是我可能知道文件是否存在吗?!” 你问。 好吧,我很高兴你问。

ls:查看目录的内容。 (ls : See a directory’s contents.)

The ls command lists the name of every file and directory inside the current working directory, in alphabetical order. You can pass it a few arguments by using dashes, like this:

ls命令按字母顺序列出当前工作目录中每个文件和目录的名称。 您可以使用破折号向它传递一些参数,如下所示:

ls -a -l

In this case, the -a argument makes ls show invisible files. The -l command makes the output look like a list. It displays one row for each item, with some extra data like the size of each file or its creation date.

在这种情况下, -a参数使ls显示不可见的文件。 -l命令使输出看起来像一个列表。 它为每个项目显示一行,并带有一些额外的数据,例如每个文件的大小或其创建日期。

One of my favorite arguments for ls is -R, which recursively calls ls on each listed subdirectory for a quick look into a repository or file tree.

我对ls最喜欢的参数之一是-R,它递归地在每个列出的子目录上调用ls ,以快速查看存储库或文件树。

Note that for all commands, arguments can actually be combined after a single dash:

请注意,对于所有命令,参数实际上可以在短划线后合并:

ls -alR

Now I hear you asking ‘How in the world am I going to remember all of these arguments and options? Do all commands have so many crazy features?’But don’t worry — we got you covered.

现在,我听到您在问:“我将如何记住所有这些论点和选择? 所有命令是否都具有这么多疯狂的功能?'但请放心,我们已为您覆盖。

男人:永远不要停止学习! (man : Never stop learning!)

If you’ve been in Stack Overflow or Reddit, you’ve probably come across the phrase ‘read the man pages’ used either educationally or as an insult. I’m here for the first use.

如果您曾经在Stack Overflow或Reddit中学习过,您可能会碰到“读手册页”这两个词在教育上或侮辱性的使用。 我在这里是第一次使用。

Try running

尝试跑步

man <command name>

It will display that command’s man page — official documentation, with all of its possible arguments and uses. Most of us use it when we’re sure a certain program did something, but we can’t quite remember which flag made it do it. It’s also very good to call man on a command the first time you use it (for instance, if it shows up in a google result), to learn a bit more about it and maybe find better ways to invoke it. To close a man page, just press Q.

它将显示该命令的手册页-官方文档,以及所有可能的参数和用法。 我们大多数人在确定某个程序已执行某些操作时会使用它,但我们不记得是哪个标志使它执行了操作。 初次使用man时(例​​如,如果它出现在google结果中)调用man也是很好的,以了解更多有关它的信息,并可能找到更好的方法来调用它。 要关闭手册页,只需按Q。

头,尾巴,猫和更少:读取文件的内容。 (head and tail, cat and less : Read a file’s contents.)

Calling head or tail on a file will show you its first or last 10 lines, respectively.Some cool arguments you can call it with are:

调用文件的将分别显示其前10行或后10行。您可以使用以下一些很酷的参数来调用它:

  • -n <number>: display number lines instead of the default 10

    -n <数字 >: 显示 数字行而不是默认的10行

  • -f (for tail) : Show the lines in real time and don’t stop (perfect for keeping tabs on a log file when you ssh into a server)

    -f (用于tail ):实时显示各行,并且不停止(在ssh进入服务器时,可以在日志文件中保留制表符)

Calling cat will simply display a file’s content. Make sure you’re using it on actual text files, or you’ll see some trippy stuff.

呼叫cat只会显示文件的内容。 确保在实际的文本文件上使用它,否则会看到一些令人毛骨悚然的东西。

If you call cat on a large (or even large-ish, to be honest) file, you’ll probably find it pretty awkward to keep scrolling up and down, looking for the relevant lines. There’s actually a more convenient way of doing that: the less command.

如果你调用一个大型猫科动物 (甚至large- 十岁上下 ,要诚实)的文件,你可能会发现它非常尴尬,以保持向上和向下滚动,寻找相关线路。 实际上,有一种更方便的方法: 更少的命令。

less will show you less of a file by loading its contents in a buffered way. You can scroll the file with the arrow keys instead of using the mouse wheel/touchpad, which is a lot more comfortable. You can also press /, type something in and press Enter to search the file (like using ctrl+f).To exit less mode, just press Q.

less将以缓冲方式加载文件内容,从而显示较少的文件。 您可以使用箭头键滚动文件,而不是使用鼠标滚轮/触摸板,这更加舒适。 您也可以按/,输入内容,然后按Enter键搜索文件(例如使用ctrl + f )。要退出省模式,只需按Q。

cp和mv:复制,剪切和粘贴。 (cp and mv : Copy, cut and paste.)

cp (copy) and mv (move) are the bash equivalents to copy and cut, respectively. You can use them like this:

cp (复制)和mv (移动) 是分别复制剪切的bash等效项。 您可以像这样使用它们:

cp <source> <destination>

To copy the file(s) in source to destination.

源中的文件复制到目标。

The source can either be a file, or a set of files. To select more than one file, you can leverage bash’s wildcard character: *. This character will match any string, even an empty one.

源可以是一个文件或一组文件。 要选择多个文件,可以利用bash的通配符: * 。 此字符将匹配任何字符串,甚至是空字符串。

For instance, this command will copy all files in the some_folder folder into the some_other_folder folder, situated one level upwards in the file system.

例如,该命令将所有文件复制在some_folder文件夹放到some_other_folder文件夹,在文件系统位于一个指标向上。

cp some_folder/* ../some_other_folder

But if we wanted to only move the .txt files into a directory called texts, we’d use:

但是,如果我们只想将.txt文件移动到名为texts的目录中,则可以使用:

cp *.txt texts/

since * matches any string. Ee are enforcing its ending in .txt. (for instance, *.txt matches filename.txt, since * matches filename, but not filename.xtt, since even though * matches the whole name, there’s nothing that matches .txt).

因为*匹配任何字符串。 EE正在以.txt强制其结尾 (例如,* .TXT FILENAME.TXT相匹配因为*匹配文件名,但不filename.xtt,因为即使*匹配全名,没有什么是匹配.TXT)。

The destination can be a file’s path (overwriting the current file in that path, if it exists, or creating a new one otherwise) if the source is a single file, or a directory name if you wish to copy/move many files.

如果源是单个文件,则目标可以是文件的路径(如果存在,则覆盖该路径中的当前文件;否则,可以创建一个新文件);如果要复制/移动许多文件,则目标可以是目录名。

rm:删除文件和目录。 (rm : Deleting files and directories.)

The opposite of touch, rm deletes a file or directory.

触摸相反,rm删除文件或目录。

Using it in its default form

以其默认形式使用

rm file_name

will work when deleting a file, but throw an error when deleting a directory. This prevents us from deleting important files in a directory, or a whole directory thinking it’s just a file.

在删除文件时将起作用,但在删除目录时将引发错误。 这样可以防止我们删除目录中的重要文件,或认为它只是文件而删除整个目录。

To bypass this, if you feel courageous, just add -r, to recursively delete every file in a directory until it’s empty, before deleting it like some kind of serial deleter. If you only feel like deleting the empty directories, use -d instead.

要避免这种情况,如果您感到胆怯,只需添加-r,以递归方式删除目录中的每个文件,直到其为空为止,然后像某种串行删除器一样将其删除。 如果只想删除空目录,请使用-d

Note that you can always use the wildcard (*) character to delete many files or directories in a single command. For instance, calling

请注意,您始终可以使用通配符(*)删除单个命令中的许多文件或目录。 例如,打电话

rm *.txt

removes all text files from the current working directory.

从当前工作目录中删除所有文本文件。

结束...现在。 (The end… for now.)

Whew, that was some introduction. You’re now familiar with the most common commands you’ll be using in your daily programming life.

哇,那是一些介绍。 现在,您已经熟悉了日常编程生活中将要使用的最常见命令。

There are a lot of things I didn’t cover yet. I plan to make a follow up with more use cases, more commands and more real problems to solve.

我还没有涉及很多东西。 我计划跟进更多用例,更多命令和更多实际问题来解决。

While I prepare the next article, I’d like to encourage you to try these commands on your own. See which ones save you time, and get used to this whole terminal thing. Maybe bookmark this article and use it for reference. I won’t tell anyone.

在准备下一篇文章时,我鼓励您自己尝试这些命令。 看看哪些可以节省您的时间,并习惯于整个终端过程。 也许将本文添加为书签并用作参考。 我不会告诉任何人。

I promise you, after a while you’ll start to see why it’s worth it. (I know it took me a while). Eventually you’ll just instinctively open the terminal every time you start doing something.

我保证,一段时间后,您将开始明白它为什么值得。 (我知道花了一段时间)。 最终,每次您开始做某事时,您都会本能地打开终端。

I hope you found some of this introduction useful, and if so please let me know! I value my readers’ feedback a lot. This is the main reason I’m writing, so please tell me if some part was hard to understand, some commands seem useless, or my tutorial is simply too boring. Also let me know if some part was interesting!

希望本文对您有所帮助,如果是,请告诉我! 我非常重视读者的反馈意见。 这是我正在编写的主要原因,所以请告诉我是否有些部分难以理解,某些命令似乎无用,或者我的教程太无聊了。 还请让我知道某个部分是否有趣!

Part 2 is already available.

第2部分已经可用

Follow me for more programming tutorials, tips and tricks. You can also read my articles on www.datastuff.tech

跟我来了解更多编程教程,技巧和窍门。 您也可以在www.datastuff.tech上阅读我的文章

翻译自: https://www.freecodecamp.org/news/how-you-can-be-more-productive-right-now-using-bash-29a976fb1ab4/

终端定时任务 开始缓冲

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/393493.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

图片预览------photoswipe 使用

photoswipe 使用 预览图片后&#xff0c;需要点击关闭按钮才能关闭&#xff0c;点击图片事件效果是放大图片&#xff0c;和微信的效果不一致&#xff0c;最后改用微信预览图片的接口了&#xff0c;但是例子可以用&#xff0c;记录一下&#xff01;&#xff01; http://www.cnbl…

SSKeychain

Keychain 使用? ---为了实用最大化我觉得我应该直接先说使用&#xff01; 当然是使用第三方库啦&#xff1a;sskeychain 3000星星的库不开玩笑。github地址&#xff1a;https://github.com/soffes/sskeychain 导入完之后首先&#xff0c;编译一下有无错。 如果是自己手动导入&…

shell高级-----正则表达式

正则表达式概述 正则表达式是一种定义的规则&#xff0c;Linux工具可以用它来过滤文本。 基础正则表达式 纯文本 [rootnode1 ~]# echo "this is a cat" | sed -n /cat/p this is a cat [rootnode1 ~]# echo "this is a cat" | gawk /cat/{print $0} this …

leetcode130. 被围绕的区域(bfs)

给定一个二维的矩阵&#xff0c;包含 ‘X’ 和 ‘O’&#xff08;字母 O&#xff09;。 找到所有被 ‘X’ 围绕的区域&#xff0c;并将这些区域里所有的 ‘O’ 用 ‘X’ 填充。 示例: X X X X X O O X X X O X X O X X 运行你的函数后&#xff0c;矩阵变为&#xff1a; X X…

linux mysql提交_MySQL 事务提交过程

开发老大要求通过binlog查询一条被修改的数据&#xff0c;数据被查出后问我&#xff0c;有没有可能binlog中不会记录&#xff0c;回答不会&#xff0c;因为数据被修改&#xff0c;若失败直接回滚&#xff0c;不会在binlog中记录&#xff0c;此刻一个朋友用了洪荒之力告诉我&…

spray.json_如何使用Spray-json(Un)在Akka HTTP中封送JSON

spray.jsonby Miguel Lopez由Miguel Lopez 如何使用Spray-json(Un)在Akka HTTP中封送JSON (How to (Un)marshal JSON in Akka HTTP with spray-json) In the previous post, we added JSON support to our Akka HTTP API using circe.在上一篇文章中 &#xff0c;我们使用circ…

React单元测试:Jest + Enzyme(二)

前言 在上一篇教程中&#xff0c;我们成功搭建了基于Jest和Enzyme的单元测试框架并成功地跑起来第一个单元测试&#xff0c;可以点击这里回顾一下。今天&#xff0c;我们重点讨论如何通过Jest来mock数据。 什么是Mock Mock的简单翻译就是模拟。既可以模拟数据&#xff0c;也可以…

input file 文件上传,js控制上传文件的大小和格式

文件上传一般是用jquery的uploadify&#xff0c;比较好用。后面会出文章介绍uploadify这个插件。 但是&#xff0c;有时候为了偷懒&#xff0c;直接就用input 的file进行文件和图片等的上传&#xff0c;input file 可以控制上传的格式&#xff0c;但是是html5&#xff0c;很多浏…

leetcode面试题 17.08. 马戏团人塔(二分法)

有个马戏团正在设计叠罗汉的表演节目&#xff0c;一个人要站在另一人的肩膀上。出于实际和美观的考虑&#xff0c;在上面的人要比下面的人矮一点且轻一点。已知马戏团每个人的身高和体重&#xff0c;请编写代码计算叠罗汉最多能叠几个人。 示例&#xff1a; 输入&#xff1a;…

如何选择适合自己的CMS建站系统

如今做网站已不像过去那样必须找网站公司才能建&#xff0c;因为网上针对建站的各种CMS建站系统层出不穷。像PageAdmin、DEDECMS、帝国CMS、Discuz等&#xff0c;这些CMS系统各有各的特点和优势&#xff0c;小熊优化的小编我从事网站制作和网站优化多年&#xff0c;和很多建站朋…

python dict hash算法_2020年3月26日python学习笔记——hash

什么是哈希&#xff1f;hash,一般翻译做散列、杂凑&#xff0c;或音译为哈希&#xff0c;是把任意长度的输入(又叫做预映射pre-image)通过散列算法变换成固定长度的输出&#xff0c;该输出就是散列值。这种转换是一种压缩映射&#xff0c;也就是&#xff0c;散列值的空间通常远…

数据处理不等式:Data Processing Inequality

我是在差分隐私下看到的&#xff0c;新解决方案的可用性肯定小于原有解决方案的可用性&#xff0c;也就是说信息的后续处理只会降低所拥有的信息量。 那么如果这么说的话为什么还要做特征工程呢&#xff0c;这是因为该不等式有一个巨大的前提就是数据处理方法无比的强大&#x…

aws架构_如何使用AWS构建可扩展架构

aws架构What I learned building the StateOfVeganism ?我学到的建立素食主义的方法是什么&#xff1f; By now, we all know that news and media shape our views on the topics we discuss. Of course, this is different from person to person. Some might be influence…

gulp 实现sass自动化 ,监听同步

实现功能 监听scss文件   sass自动化 准备条件 1 .安装gulp npm init ---->一直enter&#xff0c;会在当前目录下生成一个package.json文件,记录安装的依赖模块 npm install gulp --save-dev 2 .安装gulp-ruby-sass npm install gulp-ruby-sass 你还需要安装ruby环境…

leetcode面试题 10.03. 搜索旋转数组(二分法)

搜索旋转数组。给定一个排序后的数组&#xff0c;包含n个整数&#xff0c;但这个数组已被旋转过很多次了&#xff0c;次数不详。请编写代码找出数组中的某个元素&#xff0c;假设数组元素原先是按升序排列的。若有多个相同元素&#xff0c;返回索引值最小的一个。 示例1: 输入…

MSSQL → 02:数据库结构

一、数据库的组成 在SQL Server 2008中&#xff0c;用户如何访问及使用数据库&#xff0c;就需要正确了解数据库中所有对象及其设置。数据库就像一个容器&#xff0c;它里面除了存放着数据的表之外&#xff0c;还有视图、存储过程、触发器、约束等数据库对象。数据库管理的核心…

JAVA拳皇_拳皇(Java简单的小程序)代码实例|chu

刚开始学习Java&#xff0c;看完老九君的视频根据他的内容敲的代码&#xff0c;感觉还挺有成就感的&#xff0c;毕竟刚学习Java。package helloasd;import java.util.*; public class hellojava { public static void main(String[] args) { Scanner input new Scanner(System…

mySQL教程 第9章 触发器

第9章 触发器 入的新数据放到new表&#xff0c;删除的数据放到old表。 准备本章学习环境 连接数据库schoolDB&#xff0c;删除表TStudent&#xff0c;TScore和Tsubject中的所有数据。 delete from TStudent; delete from TScore; delete from TSubject; 向学生表插入两条记录 i…

vue使用python_如何使用Python和Vue创建两人游戏

vue使用pythonby Neo Ighodaro由新Ighodaro 如何使用Python和Vue创建两人游戏 (How to create a two-player game with Python and Vue) In this tutorial, we will create a realtime tic-tac-toe game using Python and Pusher channels. Here’s a demo of how the game wi…

掩码图制作photoshop__新手用

1.首先你得有一张图&#xff0c;比如这样的&#xff1a; 2.用PS打开他 3.左边工具栏里&#xff08;快速选择工具W&#xff09;&#xff0c;选想显示的部分 4.ctrlc复制一下&#xff0c;新建一张黑底图粘贴上去或者白底图时选中显示区即花瓣右键反向右键填充成黑色 5.菜单栏->…