Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Added dependency comments to scripts |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
105c7b91653d3a16fdf9650a1b8cd4fe |
User & Date: | jmcclure 2020-03-25 23:26:40 |
Context
2020-03-25
| ||
23:27 | Added paste primary (Shift+Ins default) and clipboard (Ctrl+v default) check-in: 0955f641b8 user: jmcclure tags: trunk | |
23:26 | Added dependency comments to scripts check-in: 105c7b9165 user: jmcclure tags: trunk | |
21:36 | Esc to quit; Fixed re-use of 'line' bug; Better error message w/o default bang check-in: 630e1c27e3 user: jmcclure tags: trunk | |
Changes
Changes to run/desk.
1 2 3 4 5 6 7 | #!/bin/sh deskPath=/usr/share/applications deskRunner=dex # Note: if more than 1 file matches the basename, each of them will open in sequence find ${deskPath} -name "${iBangArgs}*.desktop" -exec ${deskRunner} '{}' \; | > | 1 2 3 4 5 6 7 8 | #!/bin/sh # dependencies: dex deskPath=/usr/share/applications deskRunner=dex # Note: if more than 1 file matches the basename, each of them will open in sequence find ${deskPath} -name "${iBangArgs}*.desktop" -exec ${deskRunner} '{}' \; |
Changes to tab/calc.
1 2 3 4 5 6 | #!/bin/sh echo "${iBangArgs}" \ | bc \ | sed "s/^/${iBangChar}${iBangBang} /;s/^ *//" | > | 1 2 3 4 5 6 7 | #!/bin/sh # dependencies: bc echo "${iBangArgs}" \ | bc \ | sed "s/^/${iBangChar}${iBangBang} /;s/^ *//" |