Merge pull request #70 from jwilk-forks/dirname

Use param expansion for extracting directory name
This commit is contained in:
lwthiker
2022-05-30 08:46:25 +03:00
committed by GitHub
11 changed files with 11 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Find the directory of this script # Find the directory of this script
dir=`echo "$0" | sed 's%/[^/]*$%%'` dir=${0%/*}
# The list of ciphers can be obtained by looking at the Client Hello message in # The list of ciphers can be obtained by looking at the Client Hello message in
# Wireshark, then converting it using this reference # Wireshark, then converting it using this reference

View File

@@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Find the directory of this script # Find the directory of this script
dir=`echo "$0" | sed 's%/[^/]*$%%'` dir=${0%/*}
# The list of ciphers can be obtained by looking at the Client Hello message in # The list of ciphers can be obtained by looking at the Client Hello message in
# Wireshark, then converting it using this reference # Wireshark, then converting it using this reference

View File

@@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Find the directory of this script # Find the directory of this script
dir=`echo "$0" | sed 's%/[^/]*$%%'` dir=${0%/*}
# The list of ciphers can be obtained by looking at the Client Hello message in # The list of ciphers can be obtained by looking at the Client Hello message in
# Wireshark, then converting it using this reference # Wireshark, then converting it using this reference

View File

@@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Find the directory of this script # Find the directory of this script
dir=`echo "$0" | sed 's%/[^/]*$%%'` dir=${0%/*}
# The list of ciphers can be obtained by looking at the Client Hello message in # The list of ciphers can be obtained by looking at the Client Hello message in
# Wireshark, then converting it using this reference # Wireshark, then converting it using this reference

View File

@@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Find the directory of this script # Find the directory of this script
dir=`echo "$0" | sed 's%/[^/]*$%%'` dir=${0%/*}
# The list of ciphers can be obtained by looking at the Client Hello message in # The list of ciphers can be obtained by looking at the Client Hello message in
# Wireshark, then converting it using this reference # Wireshark, then converting it using this reference

View File

@@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Find the directory of this script # Find the directory of this script
dir=`echo "$0" | sed 's%/[^/]*$%%'` dir=${0%/*}
# The list of ciphers can be obtained by looking at the Client Hello message in # The list of ciphers can be obtained by looking at the Client Hello message in
# Wireshark, then converting it using this reference # Wireshark, then converting it using this reference

View File

@@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Find the directory of this script # Find the directory of this script
dir=`echo "$0" | sed 's%/[^/]*$%%'` dir=${0%/*}
# The list of ciphers can be obtained by looking at the Client Hello message in # The list of ciphers can be obtained by looking at the Client Hello message in
# Wireshark, then converting it using this reference # Wireshark, then converting it using this reference

View File

@@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Find the directory of this script # Find the directory of this script
dir=`echo "$0" | sed 's%/[^/]*$%%'` dir=${0%/*}
# The list of ciphers can be obtained by looking at the Client Hello message in # The list of ciphers can be obtained by looking at the Client Hello message in
# Wireshark, then converting it using the cipherlist array at # Wireshark, then converting it using the cipherlist array at

View File

@@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Find the directory of this script # Find the directory of this script
dir=`echo "$0" | sed 's%/[^/]*$%%'` dir=${0%/*}
# The list of ciphers can be obtained by looking at the Client Hello message in # The list of ciphers can be obtained by looking at the Client Hello message in
# Wireshark, then converting it using the cipherlist array at # Wireshark, then converting it using the cipherlist array at

View File

@@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Find the directory of this script # Find the directory of this script
dir=`echo "$0" | sed 's%/[^/]*$%%'` dir=${0%/*}
# The list of ciphers can be obtained by looking at the Client Hello message in # The list of ciphers can be obtained by looking at the Client Hello message in
# Wireshark, then converting it using the cipherlist array at # Wireshark, then converting it using the cipherlist array at

View File

@@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# Find the directory of this script # Find the directory of this script
dir=`echo "$0" | sed 's%/[^/]*$%%'` dir=${0%/*}
# The list of ciphers can be obtained by looking at the Client Hello message in # The list of ciphers can be obtained by looking at the Client Hello message in
# Wireshark, then converting it using the cipherlist array at # Wireshark, then converting it using the cipherlist array at