This website works better with JavaScript.
Home
Explore
Help
Sign In
david.wurm
/
InternetServicesBook
mirror of
https://github.com/trimstray/the-book-of-secret-knowledge
Watch
1
Star
0
Fork
0
Code
Releases
0
Activity
Browse Source
updated 'Generate a sequence of numbers'
- signed-off-by: trimstray <trimstray@gmail.com>
pull/84/head
trimstray
5 years ago
parent
e6e75e5423
commit
d0bab860bf
1 changed files
with
2 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-0
README.md
+ 2
- 0
README.md
View File
@@ -1255,6 +1255,8 @@ for ((i=1; i<=10; i+=2)) ; do echo $i ; done
for ((i=5; i<=10; ++i)) ; do printf '%02d\n' $i ; done
# alternative: seq -w 5 10
for i in {1..10} ; do echo $i ; done
```
###### Simple Bash Filewatching
Write
Preview
Loading…
Cancel
Save