0
0
This commit is contained in:
2021-10-29 05:53:53 +00:00
parent 9079386c18
commit 18c867ca18
130 changed files with 0 additions and 3249 deletions

View File

@@ -1,2 +0,0 @@
#!/bin/sh
id -Gn $FT_USER | tr ' ' ',' | tr -d '\n'

View File

@@ -1,2 +0,0 @@
#!/bin/sh
find . -type f -name '*.sh' -exec basename '{}' .sh \;

View File

@@ -1,2 +0,0 @@
#!/bin/sh
find . \( -type f -o -type d \) | wc -l | tr -d ' '

View File

@@ -1,2 +0,0 @@
#!/bin/sh
ifconfig | grep -oE 'ether .*' | cut -c7-23

View File

@@ -1 +0,0 @@
42

View File

@@ -1,2 +0,0 @@
#!/bin/sh
ls -l | awk '{ if ((NR + 1) % 2 == 0) print $0 }'

View File

@@ -1,2 +0,0 @@
#!/bin/sh
awk -F ':' '!/^#/ { n++; login=$1; rev="rev <<<"login; rev | getline revlogin; close(rev); print ((n > 1) && ((n+1) % 2 == 0))? revlogin:login }' /etc/passwd | sort -rh | tr '\n' ' ' | sed 's/ $/./; s/ /, /g;'