File: D1337.sh

package info (click to toggle)
ble.sh 0.4.0~git20250321.d4c812b-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 12,516 kB
  • sloc: sh: 71,367; awk: 1,316; cpp: 750; ansic: 186; javascript: 43; makefile: 35
file content (20 lines) | stat: -rw-r--r-- 184 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash

f1() {
  local message='hello world'
  ble-stackdump "$message"
}

f2() {
  local dummy=1
  f1
  output=$dummy
}

f3() {
  local input=$1 output=
  f2
  ret=$output
}

f3