sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
- Download zsh-autosuggestions by
# Gets line if string in the first column is longer than 6 | |
cat file.csv | awk -F "," 'length($1)>6' > file_longerthan6chars.csv |
**from,to** | |
awk '{print substr($0,24,999999)}' my.csv |
sed -n 's/.*href="\([^"]*\).*/\1/p' *.html >> somefile.txt |
for f in *\ *; do mv "$f" "${f// /_}"; done |
#!/bin/sh | |
### BEGIN INIT INFO | |
# Provides: dropbox | |
# Required-Start: $local_fs $remote_fs $network $syslog $named | |
# Required-Stop: $local_fs $remote_fs $network $syslog $named | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# X-Interactive: false | |
# Short-Description: dropbox service | |
### END INIT INFO |
"eslintConfig": { | |
"parserOptions": { | |
"ecmaFeatures": { | |
"jsx": true | |
} | |
}, | |
"plugins": ["meteor", "react"], | |
"extends": [ | |
"airbnb", | |
"plugin:meteor/recommended", |
lda = LdaMulticore(trigram_bow_corpus, | |
num_topics=num_topics, | |
workers=2, | |
id2word=trigram_dictionary, | |
chunksize=10000, | |
passes=passes) | |
---------------------------------------------------------------------------------------------------------------------------- | |
2017-12-22 07:17:25,366 : INFO : loading Dictionary object from ./data/data_output/trigram_dict_all.dict |
# Here we replace col 4 with the value of 1 | |
awk -F, '{$4="1";}1' OFS=, my.csv |
const range = [ | |
future => { | |
Meteor.setTimeout(() => { | |
future.return(1000); | |
}, 1000); | |
}, | |
future => { | |
Meteor.setTimeout(() => { | |
future.return(2000); | |
}, 2000); |