Skip to content

Commit 275a0f8

Browse files
authored
Port before_v0.60/data_extraction before_v0.60/examples before_v0.60/duplicates (#847)
This PR is part of porting all old scripts #221 and includes a set of modules: - `data_extraction` - `examples` - `duplicates` ## 7 changed files: ### `data_extraction` - `data_extraction/ultimate_extractor.nu`: removed. Has already been ported to `modules/data_extraction/ultimate_extractor.nu` ### `duplicates` - `duplicates/duplicates.nu` -> `modules/duplicates/duplicates.nu` - `duplicates/example.nu` -> `modules/duplicates/example.nu` - `duplicates/README.md` -> `modules/duplicates/README.md`: unchanged ### `examples` - `examples/netstat.nu` -> `modules/examples/netstat.nu` - `examples/date_in_local_timezones.nu` -> `modules/examples/date_in_local_timezones.nu` - `befove_v0.60/assets/core_team.nu`: removed. This table has been embedded into `date_in_local_timezones.nu`
1 parent 9d399d8 commit 275a0f8

File tree

9 files changed

+81
-93
lines changed

9 files changed

+81
-93
lines changed

before_v0.60/assets/core_team.nu

-12
This file was deleted.

before_v0.60/data_extraction/ultimate_extractor.nu

-27
This file was deleted.

before_v0.60/examples/date_in_local_timezones.nu

-25
This file was deleted.

before_v0.60/examples/netstat.nu

-17
This file was deleted.
File renamed without changes.
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
# duplicates example
2-
echo $info | from json
2+
use mod.nu *
3+
34
let info = "[{name: "John", lastname: "Doe"}, {name: "John", lastname: "Roe"}, {name: "Jane", lastname: "Soe"}]"
4-
echo $info | from json | duplicates name
5+
print ($info | from json)
6+
print ($info | from json | duplicates name)
57

68
#duplicates files example
79
echo A | save A.txt
810
echo A | save B.txt
911
# note that if I used "echo B | save B.txt" the function will give a false positive
1012
echo ABC | save C.txt
11-
ls
12-
duplicates files
13-
rm A.txt B.txt C.txt --permanent
13+
print (ls)
14+
print (duplicates files)
15+
rm A.txt B.txt C.txt --permanent

before_v0.60/duplicates/duplicates.nu modules/duplicates/mod.nu

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
# duplicates returns the rows that correspond to duplicates of the given column.
2-
def duplicates [
2+
export def duplicates [
33
column: string # Column to look duplicates at
44
--count(-c) # set it to display the number of times the value is repeated.
55
] {
6-
group-by $column |
7-
pivot |
8-
insert count { $it.Column1 | flatten | length } |
6+
group-by {get $column | into string} |
7+
transpose |
8+
insert count { $in.column1 | flatten | length } |
99
where count > 1 |
10-
reject Column0 |
11-
if ($count | empty?) { reject count } { each { $it } } |
10+
reject column0 |
11+
if ($count | is-empty) { reject count } else { each { $in } } |
1212
flatten |
1313
flatten
1414
}
1515

1616
# duplicates files recursively finds duplicate files in the current working folder.
1717
# It uses a heuristic based on duplicate files having the same size.
18-
def "duplicates files" [] {
18+
export def "duplicates files" [] {
1919
do -i {ls **/*} | duplicates size
2020
}
2121

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
2+
def "nu core-team" [] {
3+
[
4+
[ 'name', 'tz'];
5+
[ 'andres', 'America/Guayaquil']
6+
[ 'fdncred', 'US/Central']
7+
[ 'gedge', 'US/Eastern']
8+
[ 'jt', 'NZ']
9+
[ 'wycats', 'US/Pacific']
10+
[ 'kubouch', 'Europe/Helsinki']
11+
['elferherrera', 'Europe/London']
12+
]
13+
}
14+
15+
def "date local" [now] {
16+
insert time {|value|
17+
let converted = ($now | date to-timezone $value.tz);
18+
19+
$converted | format date '%c'
20+
}
21+
}
22+
23+
let next_call = ("2021-08-31 15:00:21.290597200 -05:00" | into datetime);
24+
let people = (nu core-team | date local $next_call);
25+
26+
def say [closure] {
27+
$in | each {|person|
28+
do $closure (
29+
$person | update name {|row| $row.name | str capitalize}
30+
)
31+
} | str join (char newline)
32+
}
33+
34+
print ($people | say {|person| $"($person.name)'s timezone is ($person.tz)"})
35+
36+
print ($"
37+
38+
for the next call happening on ($next_call | format date '%c').. in their timezones they would be:
39+
40+
")
41+
42+
print ($people | say {|person| $"($person.name)'s: ($person.time)"})

sourced/examples/netstat.nu

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
let ns = (netstat | lines | skip 1)
2+
3+
let first_batch = ($ns | take until {|it| $it =~ Active } | str join (char nl) | from ssv -m 1)
4+
let second_batch = ($ns |
5+
skip until {|it| $it =~ Active } |
6+
skip 1 |
7+
str join (char nl) |
8+
str replace '\[ \]' "[]" --all |
9+
from ssv -m 1 |
10+
default I-Node "" |
11+
default Path ""
12+
| each {|row| if $row.Type == DGRAM {
13+
$row | update Path { get I-Node } | update I-Node { get State } | update State ""
14+
} else {
15+
$row
16+
}
17+
}
18+
)
19+
20+
print $first_batch
21+
print $second_batch
22+
23+
24+
25+

0 commit comments

Comments
 (0)