脚本常用写法


目录

shebang

#!/usr/bin/env bash

#!/bin/bash

#!/usr/bin/python

find

find . -name "*.txt"

find . -name "*.txt" -type f -exec ls -l {} /;

grep

grep -in "xxx" /tmp/xx.txt

grep -R "xxx" --exclude-dir="xxx" xxx.txt

awk

awk '{print $2}'

ps -elL | grep main | xargs -I {} taskset -p {}

for

sed

cat

echo

原创文章,作者:6024010,如若转载,请注明出处:https://blog.ytso.com/278117.html

(0)
上一篇 2022年8月1日
下一篇 2022年8月1日

相关推荐

发表回复

登录后才能评论