目录
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